XF 2.2 Thread title color based on criteria

Alternadiv

Well-known member
Is it possible to use CSS to change the color of all thread titles based on their node ID or prefix ID, etc.? To be clear, simply changing the thread title colors inside forum_view is not exactly what I mean. I want to have the color changed anywhere the title appears (new posts widgets, last post area on forum_list, etc.
 
Some areas have classes you can utilize, others do not.

Last post title for example:

Code:
.node--id5 .node-extra-title {
    color: #33cf98;
}

But the latest post widget or whatever widget you might use would need a template edit to add in a class to make it possible.
 
Top Bottom