Please or Register to create posts and topics.

How to change the color of individual forum icons?

Hi,

New here and learning to set up the forum on my website.

I have tried various CSS code options but all I can seem to achieve is to change the color of all the topic icons.

What I cannot work out is how to change the color of individual forum icons?

One bit of code I tried was this:

.asgaros-forum .forum-list .forum i.fas.fa-comments {
    color: #2b2929;
}

.asgaros-forum .forum-list .forum i.fas.fa-tractor {
    color: #c90000;
}

But that did not work so any help would be much appreciated 🙂

P.S. I have googled and also tried a search in this forum before posting

Hello @veevrdesigns-co-uk

You have to use the ID of the forum. For example:

.asgaros-forum .forum-list #forum-42 i.fas.fa-comments {
    color: #2b2929;
}

 

If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!