XF 1.5 How to colour nodes?

ozm8ey

Member
Licensed customer
Hello how do I make node forums have colour? So I can have like Announcements as red for example
 
Add the below code to your EXTRA.css template and change the node ID (2) and the color (red) to switch your needs.

Code:
.node_2 .nodeTitle a{
color: red;
}
 
Back
Top Bottom