Change the color and size of the header box (the one with logo and menu)
- The topic ‘Change the color and size of the header box (the one with logo and menu)’ is closed to new replies.
Need help? Check out our Support site, then
Is there CSS that would allow me to change the color and size of the top white header box?
The blog I need help with is: (visible only to logged in users)
Hello, yes:
#header .padded {
background-color: #fff;
}
I hope this helps, let me know if you need further assistance.
Emily
Thanks! Is there a way to change the hight of it as well?
Adding the following CSS will decrease the height a bit:
#header .site-description {
display: none;
}
Hopefully that helps!