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]](https://camo.mybb.com/216686f428f587465d448b177d09c63159381274/687474703a2f2f6935342e74696e797069632e636f6d2f356d397973672e706e67)
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.
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;
}
Edit: Too late reply. faviouz is first
