PDA

View Full Version : How to change user rank color?


Elixar
05-23-2015, 10:06 PM
So one of the styles I'm using(Morbid Blue) has the user ranks showing up as gray. How can I have them be colored black?

MarkFL
05-23-2015, 11:30 PM
I took the liberty of changing that for you...what I did was open the template "postbit.css" and to the following selector added the code in red:

.postbit .userinfo_noavatar .usertitle, .postbit .userinfo .usertitle, .postbit .userinfo_noavatar .rank, .postbit .userinfo .rank {
font-size: {vb:stylevar small_fontSize};
font-weight: bold;
display:block;
clear:both;
color: #000000;
}

Elixar
05-24-2015, 12:36 AM
I took the liberty of changing that for you...what I did was open the template "postbit.css" and to the following selector added the code in red:

.postbit .userinfo_noavatar .usertitle, .postbit .userinfo .usertitle, .postbit .userinfo_noavatar .rank, .postbit .userinfo .rank {
font-size: {vb:stylevar small_fontSize};
font-weight: bold;
display:block;
clear:both;
color: #000000;
}
Thank you!