where to change the font-color in membercard?

Hilmer

Active member
Anyone who know how which css to edit if I want to change the color on these lines in the member card?

Member Since: Messages: Likes Received: Trophy Points: Warning Points: Albums count:

 
Its in xenforo.css template around line 460. Look for this code
Code:
/* ***************************** */
/* DL Name-Value Pairs */

.pairs dt,
.pairsInline dt,
.pairsRows dt,
.pairsColumns dt,
.pairsJustified dt
{
    color: @mutedTextColor;
}
 
here's some css that you can use as an exmaple of what css to use and what changes what by inserting them into your extra.css template. bare in mind change the colours to suit your preference.

Code:
.xenOverlay.memberCard .userLinks a {
        color: #f3bf33 !important;
}
 
 
.xenOverlay.memberCard .userInfo h3 a {
        color: #f3bf33 !important;
        text-shadow: 0 2px 2px #4e0000;
 
}
 
.xenOverlay.memberCard .userInfo h4 {
        color: #ebc151 !important;
}
 
.xenOverlay.memberCard .userInfo .status {
        color: #f1e5bc !important;
}
 
.xenOverlay.memberCard .pairsInline dd  {
        color: #f1e5bc !important;
}
 
.xenOverlay.memberCard .userStats  dt {
        color: #ebcc78 !important;
}
 
.xenOverlay.memberCard .lastActivity {
        color: #f1e5bc!important;
}
 
.xenOverlay.memberCard .lastActivity .DateTime  {
        color: #d9d0b1 !important;
}
 
.xenOverlay.memberCard .muted {
        color: #DACFAA !important;
}
 
.xenOverlay.memberCard .lastActivity dt {
        color: #dacfaa !important;
}
.xenOverlay.memberCard .lastActivity a {
        color: #f5d874 !important;
}
 
Thanks a lot - perfect.
I used your CSS Shelly.

I used to use the Nature Calls but I may have missed something up because it stopped working.

If memory recalls, I had to fix the css on the nature calls membercard after a xf update the devs making some changes to it. I doubt you messed anything up as several members on my site had similar issues which they alerted me to which prompted me to make the necessary fixes. :)
 
Top Bottom