XF 2.1 How to color nodes categories and forums

FedericoS

Active member
Hello everyone :)

I'm trying to style my nodes with xenForo default style. I've a little question about it: How can I make a design like this one?
des.webp

Thanks in advance :D
 
Solution
Navigate to Template, look for EXTRA.LESS. Add these two codes

CSS:
.node-title a {
    color: red;
}

.node-extra-row a {
    color: red;
}

Change "red" to whatever color you prefer.
Navigate to Template, look for EXTRA.LESS. Add these two codes

CSS:
.node-title a {
    color: red;
}

.node-extra-row a {
    color: red;
}

Change "red" to whatever color you prefer.
 
Solution
Top Bottom