MyBB Community Forums

Full Version: Change Color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to change the color of the area that I highlighted while keeping the non-highlighted part white?

http://i.imgur.com/UqTOyto.png

Here is the link to my test forum if needed: http://destinyboard.net

Thanks!
yes you can.. by adding the background for "#logo .wrapper" and "#content .wrapper" and then changing the padding for #logo and #content accordingly to even out the width... check if below code works...


#logo .wrapper, #content .wrapper {
    background: #CCCCCC;
}

#logo {padding: 0!important;}
#content {padding-left: 0!important; padding-right: 0!important;}
(2016-02-28, 10:07 AM)mmadhankumar Wrote: [ -> ]yes you can.. by adding the background for "#logo .wrapper" and "#content .wrapper" and then changing the padding for #logo and #content accordingly to even out the width... check if below code works...


#logo .wrapper, #content .wrapper {
    background: #CCCCCC;
}

#logo {padding: 0!important;}
#content {padding-left: 0!important; padding-right: 0!important;}

It worked, thank you very much!