XF 1.2 Unread threads

Wild Onion

Member
I'm at my wits end here. I've played with the text styles in the Discussion List styles but I cannot get the "First Row" style to stop coming back as a bold font. Something is overriding that style property.

Any ideas?
 
Use EXTRA.css:
Code:
.discussionListItems .unread .title a
{
font-weight: normal;
}

You may need to use higher specificity (or !important).
 
I added that to multiple styles, with the !important, and I still can't get it to work.

Also, the "Last Message" column will go to normal, but the thread title stays bold.
 
Is this for logged in or logged out users?

Edit: Actually I've just checked and it works for both. I can't replicate the issue you have so it must be something to do with your custom style.
 
What I mean is the code I posted works on every style I have tried, so you are either entering it wrong or it's something to do with your style(s).
 
Top Bottom