MyBB Community Forums

Full Version: Reputation Color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So when you apply reputation to someone's account on my forum you cannot read the text unless you highlight it.

I cannot find where to change the background or color of the text.
Example: http://topickontrol.com/reputation.php?uid=1
AdminCP > Templates & Style > Your Theme > global.css > Advanced mode
Find:
.trow_reputation_positive
and add a color attribute, e.g:
.trow_reputation_positive {
background:#ccffcc;
color:blue;
}
(2016-02-03, 01:05 AM)nth Wrote: [ -> ]AdminCP > Templates & Style > Your Theme > global.css > Advanced mode
Find:
.trow_reputation_positive
and add a color attribute, e.g:
.trow_reputation_positive {
background:#ccffcc;
color:blue;
}
That fixed it, but when it shows "Username" (their amount of rep) - it is hard to see the zero, what php code is that?

Edit I was able to fix it, thanks nth.