XF 2.2 Bolding node titles

Stiff

Member
Rank newbie question. I'd like to bold the node titles on the home page. I have figured out how to do the box titles, but can't figure out for the life of me how to do the node titles. Examples would be on the front end of this forum, e.g. "Pre-Sales Questions".
 
Try adding this to extra.less template:
CSS:
.node-title a {
    font-weight: bold;
}

Keep in mind bold node titles are already being set for unread nodes. Adding this code will basically make all read and unread nodes look the same.
 
Oh, okay. Brilliant. I guess I don't want to bold node titles! I guess they aren't bolded because my site isn't open yet, so nothing's been read except by me.
 
Top Bottom