MyBB Community Forums

Full Version: Change reputation comments color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello my reputation background was green, but i can't see the text (when people rep me) because it's white, i was wondering how to change it, anyone knows?

Picture of which colors i want to change:
http://i.imgur.com/5SzLs.png
Find the followings in global.css and try changing the color. If you can't find those in global.css just add those.

.trow_reputation_positive {
    background:#ccffcc;
}

.reputation_positive {
    color:green;
}

If the text color still not get changed - change the background color to some darker.
I bet that you didn't even see the image. Smile
Yes I saw. Now see this image:

[Image: f2583762.png]

It was a dark theme. So I've just removed the background color. And the text has become visible.
Well i want the background to be green, so...
Thats what I said first.

Find in global.css:

.trow_reputation_positive {
	background: #ccffcc;
}

Change it to:

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

Result (watch the comment color as black instead of white):

[Image: 41602b48.png]

Same way:

.trow_reputation_negative {
	background: #ffcccc;
}
It works.. thanks, but how did u make it rectangular? Big Grin
Its a theme I'm creating. Wait ... which rectangular thing you are talking about?
Anyway, glad to see your problem is solved Big Grin
The green background is rectangular.. i was asking about that Big Grin
(2012-07-30, 09:37 PM)Morpheus. Wrote: [ -> ]The green background is rectangular.. i was asking about that Big Grin

Huh The green background is by default rectangular. What its supposed to be?
If you are asking about rounded corners; here is the code to include:
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;