XF 2.0 How do I change node icon?

I got it to work on a forum node..thanks, but how do I change the link forum node?
This goes in extra.css. Change 69 to be your link forum node and image.png to be your image.
CSS:
//
.node--id69.node--link .node-icon i:before {
    background-image: url('images/image.png');
    background-size: 44px 44px;
    display: inline-block;
    width: 44px;
    height: 44px;
    content:"";
}
 
This goes in extra.css. Change 69 to be your link forum node and image.png to be your image.
CSS:
//
.node--id69.node--link .node-icon i:before {
    background-image: url('images/image.png');
    background-size: 44px 44px;
    display: inline-block;
    width: 44px;
    height: 44px;
    content:"";
}

I am interested in this. Where do it put this css code?
I am assuming the node ID is the number in my URL when I open a relevant node in Admin?
 
Top Bottom