MyBB Community Forums

Full Version: Which Element Changes This Color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Need to change color but don't know which element to change. Looks like #panel but there's 13 different panel settings? May have completely wrong but any help appreciated.

Forgot to attach pic
It's not a color, it's a (repeating) background image.

#panel .upper {
background: #0f0f0f url(images/tcat.png) repeat-x;
color: #fff;
border-top: 1px solid #444;
border-bottom: 1px solid #000;
padding: 7px;
clear: both;
}
Thanks - and to change it to gray?

Maybe a bone head move but I removed the repeating image and changed the background color. Seemed to work OK.
Replace that section with:

#panel .upper {
background-color: #6c757d;
color: #fff;
border-top: 1px solid #444;
border-bottom: 1px solid #000;
padding: 7px;
clear: both;
}

without the top and bottom borders:

#panel .upper {
background-color: #6c757d;
color: #fff;
padding: 7px;
clear: both;
}

Press CTRL+F5 after making changes.
THANK YOU!!
I did't look at every reply so I don't know if anyone else has brought this up, but if you open your page, or any page in your browser, you can right click on the element and and select Inspect Element. This will open the Inspection tool, and given the the line ID for the CSS as well the HTML code. I hope that helps.