MyBB Community Forums

Full Version: Reputation Comment box Color Change?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how do i change the color of this box to make it visible?
[Image: 426052740603d86df16dd2d9df487693.png?1341060768]
AdminCP > Themes > Your theme > edit > global.css > find;
.trow_reputation_positive {
	background: #ccffcc;
}

.trow_reputation_negative {
	background: #ffcccc;
}
and Change it into;
.trow_reputation_positive {
	background: #ccffcc;
color: #000000;
}

.trow_reputation_positive a:link, .trow_reputation_positive a:active, .trow_reputation_positive a:visited, .trow_reputation_positive a:hover {
color: #000000;
}

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

.trow_reputation_negative a:link, .trow_reputation_negative a:active, .trow_reputation_negative a:visited, .trow_reputation_negative a:hover{
color: #000000;
}

if you want to change it of your own choiuce then use firefox with its addon "firebug"
(2012-07-02, 03:12 AM)MyBB_Pro Wrote: [ -> ]if you want to change it of your own choiuce then use firefox with its addon "firebug"

That's not what he wanted. It's clear he wanted to change it for everyone.

Plus Firebug is only temporary as it's designed for web design and such.