MyBB Community Forums

Full Version: Change This Bar's Color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to change this bar's color instead of a gradient color to one solid color and I cant find were to change it?

Picture of bar (It's the bar that has the category name on it) :

[Image: 431863df20c74ee5b49f694e17c052f4.png]
Admin CP -> Templates & Style -> Themes -> *your theme* -> global.css -> Edit Stylesheet: Advanced Mode

Find:

.thead {

Change the background to the hex colour that you want and delete the url() that probably is there, for example:

background: #000000;

You can use this website to pick up the color code: http://www.colorpicker.com/
This is thead.

Go to your global.css and find:

.thead {
	background: #026CB1 url(images/thead_bg.gif) top left repeat-x;

Change the color hexcode and remove the image link. Something like:

.thead {
	background: #FF0000;

Edit: Ninja'd :p