MyBB Community Forums

Full Version: Change the background color of..
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
..a user's reputation page's comment section. When you go to a user's reputation page and look at the comments given to them it's a color I don't want.
i.e. Comment: Helpful post! (+1)
(Behind the post content, I want to change that color.

You can see here:
http://img718.imageshack.us/img718/9211/35453394.jpg

I want to change that green to black. No idea how though. Anyone know?
Edit global.css of your theme.

Find:
Quote:.trow_reputation_positive {
background: #ccffcc;
}

.trow_reputation_negative {
background: #ffcccc;
}

Change the background values to #000
Edit : not seen kavin's reply Smile
__________________________

if you change Green to black then there will be a text color problem

anyway, find below in global.css
.trow_reputation_positive {
    background: none repeat scroll 0 0 #CCFFCC;
}


change #CCFFCC; to #000;
Thanks!