Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Topic started by: [chrisB] on December 11, 2022, 12:30:57 PM

Title: Different Category Header Colours
Post by: [chrisB] on December 11, 2022, 12:30:57 PM
Would anyone be able to tell me how [if it's possible] to have different category header colours?

div.cat_bar

Is where I can change all colours, but I am unsure how to change the default skin so that I can have multiple colours instead of just one.
Title: Re: Different Category Header Colours
Post by: [chrisB] on December 11, 2022, 01:32:41 PM
Can CSS with SMF target forum ID's as a way to change the colour of the headers?
Title: Re: Different Category Header Colours
Post by: Diego Andrés on December 11, 2022, 04:22:57 PM
Yes
#category_1.cat_bar {
  background-color: red;
}
Title: Re: Different Category Header Colours
Post by: [chrisB] on December 11, 2022, 04:27:48 PM
Thank you, Diego.