I want to remove the margin-top property from twenty twelve theme. This is the default theme provided by wordpress. The sample of the code what I found with the help of firebug.
html{
margin-top: 32px !important;
}
I want to remove the margin-top property from twenty twelve theme. This is the default theme provided by wordpress. The sample of the code what I found with the help of firebug.
html{
margin-top: 32px !important;
}
Go to the functions file inside your theme folder:
functions.php
I had the same issue. I got rid of
in the header template and problem solved.
in the style.css around line #1645 is body .site { which has padding top & bottom:
You can specify an identifier for the html tag in the template and set it to margin-top: 0! important;
Add the following function to your functions.php file