Support Color node or category

Solution
How can I identify the Category I want to add the color to?
Open your theme with extra.less and enter the ID of your XXX field category in the code below and add it to the template.
Code:
/* Coloured Node Categories */
.block.block--category.block--categoryXXX .block-header {
    background: #009ACF;
    color: #ffffff;
}
/**********/
Change X to your node ID.

How do I find node ID?
It's simple to find it. Just hover on your Node Category Title like in example below and check for the ID:
Code:
CSS:
.block.block--category.block--category21 .block-header {
    background: #7CA430;
    color: #ffffff;
}
  • Tags
    add on custom nodes
  • Back
    Top Bottom