XF 2.0 Read vs Unread Thread Titled

suineg

Active member
I know that in 1.5 my style was making unread thread titles one color and the read titles were another. It made what you still haven’t read easily stand out.

I can’t seem to figure out how to bring that functionality back in XF2. Would that be a conditional statement somewhere? Setting the a link visited color doesn’t do it.
 
You could do something like this, there's probably a better solution. Add this to your extra.less and change the colors as you wish:
Code:
.structItem-title a {color: black}
.is-unread .structItem-title a {color: #2577b1}
 
You could do something like this, there's probably a better solution. Add this to your extra.less and change the colors as you wish:
Code:
.structItem-title a {color: black}
.is-unread .structItem-title a {color: #2577b1}
Playing with this worked out well. I don't know why I didn't work from that side and then worked with unread after ....
 
Top Bottom