MyBB Community Forums

Full Version: Change Reputation Text Color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
So,

I've pretty much tried everything and looked everything up.

The reputation color is too bright for positive and negative. Screenshot: https://i.gyazo.com/a9ca86000daa9b8d58ba...7b4669.png
The theme is the Carbon Theme by Rooloo Designs: https://community.mybb.com/mods.php?action=view&pid=230

Can anyone help me? Thank you.
In global.css

.reputation_positive {color:green}
.reputation_neutral {color:#444}
.reputation_negative {color:red}
(2017-06-26, 09:18 PM)Ashley1 Wrote: [ -> ]In global.css

.reputation_positive {color:green}
.reputation_neutral {color:#444}
.reputation_negative {color:red}

I tried that and it still is too bright. Look:
https://i.gyazo.com/0d26a9e7cb496165854e...5b354f.png

But still:
https://i.gyazo.com/22f000d309a8ccce3dfc...890202.png
Make sure you're editing the right theme's global.css

The controls are in global.css

.trow_reputation_positive {
	background: #ccffcc;
}

.trow_reputation_negative {
	background: #ffcccc;
}

.reputation_positive {
	color: green;
}

.reputation_neutral {
	color: #444;
}

.reputation_negative {
	color: red;
}

.repbox {
	font-size:16px;
	font-weight: bold;
	padding:5px 7px 5px 7px;
}

._neutral {
	background-color:#FAFAFA;
	color: #999999;
	border:1px solid #CCCCCC;
}

._minus {
	background-color: #FDD2D1;
	color: #CB0200;
	border:1px solid #980201;
}

._plus {
	background-color:#E8FCDC;
	color: #008800;
	border:1px solid #008800;
}
and when you're done making stylesheet changes you should hard refresh by pressing CTRL+F5
(2017-06-26, 09:37 PM)Ashley1 Wrote: [ -> ]Make sure you're editing the right theme's global.css

The controls are in global.css

.trow_reputation_positive {
	background: #ccffcc;
}

.trow_reputation_negative {
	background: #ffcccc;
}

.reputation_positive {
	color: green;
}

.reputation_neutral {
	color: #444;
}

.reputation_negative {
	color: red;
}

.repbox {
	font-size:16px;
	font-weight: bold;
	padding:5px 7px 5px 7px;
}

._neutral {
	background-color:#FAFAFA;
	color: #999999;
	border:1px solid #CCCCCC;
}

._minus {
	background-color: #FDD2D1;
	color: #CB0200;
	border:1px solid #980201;
}

._plus {
	background-color:#E8FCDC;
	color: #008800;
	border:1px solid #008800;
}
and when you're done making stylesheet changes you should hard refresh by pressing CTRL+F5

I was editing the theme's global.css so I was editing the right one. Is it fixing for you?
(2017-06-26, 10:20 PM)Blxrr Wrote: [ -> ]I was editing the theme's global.css so I was editing the right one. Is it fixing for you?

Yes of course, you can see the subtle color changes on my own site.
(2017-06-26, 10:48 PM)Ashley1 Wrote: [ -> ]
(2017-06-26, 10:20 PM)Blxrr Wrote: [ -> ]I was editing the theme's global.css so I was editing the right one. Is it fixing for you?

Yes of course, you can see the subtle color changes on my own site.

But do you have his theme installed on your site to test it? Because I'm making the correct changes and following what you said.
No. This is general support not theme support. It will help if you post a link to your site so people here can check it.
Try to do a hard refresh of the cache of you browser with CTRL + F5 (CMD + F5 if you're using a Mac)
(2017-06-26, 11:01 PM)Ashley1 Wrote: [ -> ]No. This is general support not theme support. It will help if you post a link to your site so people here can check it.

Hey, the URL is: GamingAbyss.com
Appreciate the help!

(2017-06-27, 04:19 AM)Mipher Wrote: [ -> ]Try to do a hard refresh of the cache of you browser with CTRL + F5 (CMD + F5 if you're using a Mac)

Already tried that, but nothing works. :/
Pages: 1 2