XF 2.2 Help - Node title read unread

DemoTiger

Member
Hello,

I am using the below code(extra.less CSS) on my forum, so if the node title is unread, then it should show the node title in bold size.

Code:
.node--unread .node-title {
font-weight: bold;
}

It only shows the last node title(Off-topic) in bold on my forum webhostvoice.com, but all other unread titles are showing in regular size.

I spent hours fixing this. I want to show unread note titles and threads in bold font size.


Thanks.
 
I am using the below code(extra.less CSS) on my forum, so if the node title is unread, then it should show the node title in bold size.
Unread forums titles are already in bold when they are unread, there is nothing to change on that side.
What I notice is that the last posts of the other forums are old and after a certain time they no longer appear as unread. Try posting a new message in one of these forums and as a guest you will see that the forum title will be in bold.

and threads in bold font size.
Try this in your extra.less template
Less:
.node--unread .node-extra-title {
    font-weight: bold;
}
 
Last edited:
Top Bottom