Arrière-plan du changement de couleur du thème

Hi,

How would I change the color of all topics in the topic list for a single category? Let’s say I wanted to make a “sponsor” category, and all topics under that category in the topic list would have a background color that’s different from the rest of the topics in the list?

Thanks in advance!

You can do this with CSS

.topic-list-item.category-sponsor {
    background: salmon;
}

Word! Big thank you for that one!