XF 1.5 How do you change warning section text

Hello there!
When you click on a users profile, if they have a warning (or several) there will be a warning tab. My question is, when you click on this tab, how do I change the text, so expired warnings pop up in red text instead of the grey?

Thanks!
-Brandon.
 
I would think active warnings should be more noticeable but at any rate.
Expired: (red)
CSS:
.warningList .dataRow.muted {
        color: #f00;
}

If you want...

Active Warning: (green)
CSS:
.warningList .dataRow {
        color: #00af00;
}
 
Okay, thank you very much! c:

EDIT: It worked! Once again, thanks! Also, I see you have PixelExit in your signature. I'm using one of the styles from PixelExit! It looks great.
 
Last edited:
Top Bottom