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]](https://camo.mybb.com/c71c235f92f8acb4798a0678a9427ef19f3d706c/687474703a2f2f73706565646361702e6e65742f73686172696e672f66696c65732f34332f31382f34333138363364663230633734656535623439663639346531376330353266342e706e67)
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