MyBB Community Forums

Full Version: How do i change color of 'My Category' & 'Board Statistics' background?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am looking for the place to change the color of the table background for 'My Category' and 'Board Statistics'

I have tried through thead in globalcss I cannot seem to change the color. The borders have changed but not the bg.

Thanks.

The blue sections here: http://articlechase.com/dollarhyperlinks/index.php
table head (thead) has a background image applied thru css

.thead {
background: url("images/thead_bg.gif") repeat-x scroll left top #AF7817;

replace thead_bg.gif with required color image of the same dimensions ..

you may also use below css instead of the above (use required color code)
.thead {
background: #AF7817;
(2011-12-21, 06:01 PM)ranjani Wrote: [ -> ]table head (thead) has a back ground image applied thru css

.thead {
background: url("images/thead_bg.gif") repeat-x scroll left top #AF7817;

replace thead_bg.gif with required color image of the same dimensions ..

you may also use below css instead of the above (use required color code)
.thead {
background: #AF7817;

Thanks Smile
YAY worked +1 awarded
Tried to rate it won't let me.