MyBB Community Forums

Full Version: Reputation text color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey!

How do I edit the text in the reputation boxes:

[Image: 001_SV8EXH3S1CWW153.jpg]
1. Go to Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode.

2. Find:

.trow_reputation_positive {
	background: #ccffcc;
}

.trow_reputation_negative {
	background: #ffcccc;
}

3. Change to:

.trow_reputation_positive {
	background: #ccffcc;
	color: #000;
}

.trow_reputation_negative {
	background: #ffcccc;
	color: #000;
}