MyBB Community Forums

Full Version: add background to header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
if you look at my site hallofgamers.net, you'll see the logo and no table/background surrounding it. id like to add a table around the logo. how do it do this?
If you want to set background to your header then goto your ACP=>Themes/Templates=>Click on your theme=>global.css=>Edit in Advanced mode, then add the following:
#header{
background-color: #f1f1f1; //choice of your color
}

or if you want around the logo class then replace your logo class with this:
.logo {
text-align: center;
background-color: #f1f1f1;
}