XF 2.1 Changing picture on categories' from speech bubbles

At the moment my forum is a bit boring and all the categories are all pictures of just speech bubbles, I've seen others that are shopping bags, lips etc etc and just wondered if someone wouldn't mind talking me through how to change mine please? thank you
 
add this line under node number two:

.node--id532 .node-icon i::before{ content: "\f21b";}

So your code looks like this:

Code:
.block-body{

.node--id2 .node-icon i::before{ content: "\f0f4";}
.node--id532 .node-icon i::before{ content: "\f21b";}

}

Note that we will be adding each new node icon like so.
 
<i class="fad fa-badge-percent"></i>
This one is 523,

Thank you, I have lots left, is there a way I can do them so I'm not bothering you?
What you're going to do is basically use the same code for each node. The only things that are going to change are the node number and the icon code. Let me do a quick screenshot for the next one so you can do it yourself.
 
So for the next one, you want the % icon. You go to the Fontawesome page where you icon is and you copy the code for it (see pic below):

r3XSK6H.gif


Next, you find out which node number you want the icon in and you put it in the code:

.node--id [1?] .node-icon i::before{ content: "\ [2?]";}

Replace [1?] with your node number.

Replace [2?] with your icon code.


Your next node icon should look like this:

.node--id523 .node-icon i::before{ content: "\f646";}

Try for yourself and I will be here if anything goes wrong ;-)
 
Top Bottom