MyBB Community Forums

Full Version: Changing text color in reputation...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need to make the text color black.

I have looked around, can't seem to find where it is at.

Thanks in advance.

[Image: 5m9ysg.png]
In global.css , find;
.trow_reputation_positive {
	background: #ccffcc;
}

.trow_reputation_negative {
	background: #ffcccc;
}
and Add color attribute to there, like this;
.trow_reputation_positive {
	background: #ccffcc;
color: #000000;
}

.trow_reputation_negative {
	background: #ffcccc;
color: #000000;
}
Ohhhh does that mean textrow?

:o should have tried that.

Thank you , your always a great help.
(2011-06-10, 08:17 PM)Wyn Wrote: [ -> ]Ohhhh does that mean textrow?

Its trow
Yeah,
Wait also, what about the [delete rating]
button??
Add this after what you just edited:

.trow_reputation_positive a {
	color: #000000;
}

.trow_reputation_negative a {
	color: #000000;
}
Thank you a lot!!!!
Edit: Too late reply. faviouz is first Smile