MyBB Community Forums

Full Version: change header background color ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I would change header background color, How can I do that  Huh
It depends on the theme you are using. Generally the style should be defined under 'global.css'.
If you can provide the link of your site it will be easier to tell you what to do and where.
global.css

change

#logo {
background: #fff;
padding: 10px 0;
border-bottom: 1px solid #263c30;
}

to

#logo {
background: #000;
color: #fff;
padding: 10px 0;
border-bottom: 1px solid #263c30;
}
@Ashley1
That's exactly what I need Thank you so much <3