XF 2.2 Global node colour change.

OldCoals

Active member
I have seen a few guide showing how to change the node colour but on an individual basis.

I want all my nodes to be red, can I set that globally in one go?
 
Add code to your extra.less template:
Code:
/* Coloured Node Categories */
.block.block--category.block--categoryX .block-header {
    background: #009ACF;
    color: #ffffff;
}
/**********/
 
Top Bottom