XF 2.2 How to change the icon of a particular sub-forum?

extra.less

Where f000 is enter the fontawesome. Where xx is, forum ID #.
Code:
.node--forum.node--idxx.node--unread .node-icon i:before {
    content: "\f000";
}

.node--forum.node--idxx.node--read .node-icon i:before {
    content: "\f000";
}
 
Top Bottom