How to change the color of individual forum icons?
Quote from Vee on July 25, 2023, 11:30 amHi,
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
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
Quote from Asgaros on August 4, 2023, 6:31 amHello @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; }
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; }