Tagged: whitespace
Hi,
Here is a link to my issue (image provided):
http://www.helpwithstats.com/?page_id=222
Essentially, in the enfold theme, how do I:
1. Remove the top bar above the header
2. Reduce the whitespace found across all pages between the menu and text
3. Reduce the white space above and below the horizontal ruler.
Is there is some css code that I can drop into the “Quick CSS” box to help with these modifications. For 2 and 3, I can do some trial and error with the code to find what is right.. just need some help with code :)
Thanks!
Hi,
1. Remove the top bar above the header
Add this on your custom.css or Quick CSS
#header_meta {
display: none;
}
2. Reduce the whitespace found across all pages between the menu and text
I’m not sure what whitespace you’re referring to since the link you gave almost have no content in it.
.template-page.content.twelve.alpha.units {
padding-top: 10px;
}
3. Reduce the white space above and below the horizontal ruler.
You can use this
.hr {
height: 10px;
margin: 10px;
}
Adjust the values.
Regards,
Ismael
Thanks!
Worked perfectly!