Change member card username color

TheBigK

Well-known member
I'm totally lost finding the right section in style properties that controls the color of the links (for username) in the member cards overlays.

Where should I look?
 
I use the EXTRA.css for it.

.xenOverlay.memberCard .userInfo h3 a {
color: green;
}

.xenOverlay.memberCard .userInfo h3 a:hover {
color: blue;
}


Changing green/blue to whatever colour you want the username to be.
 
I use the EXTRA.css for it.

.xenOverlay.memberCard .userInfo h3 a {
color: green;
}

.xenOverlay.memberCard .userInfo h3 a:hover {
color: blue;
}


Changing green/blue to whatever colour you want the username to be.

I tried that - but it doesn't work. I don't know why. I added that code to the extra.css (via TMS). It doesn't show up on the member cards though.
 
You don't need to use TMS for EXTRA.css.. just put it in the usual one, try adding !important.

.xenOverlay.memberCard .userInfo h3 a {
color: green !important;
}

.xenOverlay.memberCard .userInfo h3 a:hover {
color: blue !important;
}

Also, if you're using Chrome, sometimes it takes a million years for the cache to catch up and display the changes.
 
Top Bottom