XF 1.4 changing icon node

LegendZ

Member
Well, theme support dont cover this one so....

I want to change node icon and i already have code which works:

Code:
.node_8 .forumNodeInfo .nodeIcon, .node_8 .categoryForumNodeInfo .nodeIcon {
background-image: url("http://www.xyz.com/xxx.png") !important;
}
.node_8 .forumNodeInfo.unread .nodeIcon, .node_8 .categoryForumNodeInfo.unread .nodeIcon {
background-image: url("http://www.xyz.com/xxx.png") !important;
}

Problem is, first icon is showed over second icon.

Untitled.webp

Theme was GREAT and gave me this css code

Code:
.node_8 .nodeIcon .fa-comments:before {
content: "" !important;
}

but i have no idea where to put this code. Help?
 
Top Bottom