O OldCoals Active member Aug 29, 2020 #1 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?
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?
Brad P Well-known member Aug 30, 2020 #2 Add code to your extra.less template: Code: /* Coloured Node Categories */ .block.block--category.block--categoryX .block-header { background: #009ACF; color: #ffffff; } /**********/ Upvote 0 Downvote
Add code to your extra.less template: Code: /* Coloured Node Categories */ .block.block--category.block--categoryX .block-header { background: #009ACF; color: #ffffff; } /**********/
gouwepeer.nl Well-known member Aug 30, 2020 #3 CSS: /* All Node Categories Red */ .block.block--category.block--category .block-header { background: red; color: #ffffff; } /**********/ Upvote 0 Downvote
CSS: /* All Node Categories Red */ .block.block--category.block--category .block-header { background: red; color: #ffffff; } /**********/