XF 1.2 Member Card

wickedstangs

Well-known member
How to change the text color? The Dark Blue only
card.webp

Everytime, I mess with the Forum Statistics it changes my Member Card Text Color.

.pairs dt, .pairsInline dt, .pairsRows dt, .pairsColumns dt, .pairsJustified dt {
color: #0A2A5A !important;
}

How can I just change the Member Card Color?
 
Use higher specificity to stop your changes affecting other areas.

For the member card for example add .xenOverlay.memberCard before those classes:
Code:
.xenOverlay.memberCard .pairs dt, .pairsInline dt, .pairsRows dt,
.xenOverlay.memberCard .pairsColumns dt, .pairsJustified dt {
color: #0A2A5A !important;
}

Do the same for the other areas and it won't afffect everything which uses those classes.
 
Use higher specificity to stop your changes affecting other areas.

For the member card for example add .xenOverlay.memberCard before those classes:
Code:
.xenOverlay.memberCard .pairs dt, .pairsInline dt, .pairsRows dt,
.xenOverlay.memberCard .pairsColumns dt, .pairsJustified dt {
color: #0A2A5A !important;
}

Do the same for the other areas and it won't afffect everything which uses those classes.
can't get it to work.. If I use the above it mess with the front page again.. Just want to change color of the .dt of the member card
Code:
.xenOverlay.memberCard, .dt {
color: #F4F5F0 !important;
}
 
Top Bottom