XF 1.5 RESOLVED - Sub Forum Custom Node Icons

Wesker

Well-known member
Here is the code I currently use for non sub forum node icons placed inside extra.css

PHP:
.node .node_710 .forumNodeInfo .nodeIcon, .node .node_710 .categoryForumNodeInfo .nodeIcon {
    background-image: url("images/nodes/710.png");
    background-position: 0px 0px;
}
.node .node_710 .forumNodeInfo.unread .nodeIcon, .node .node_710 .categoryForumNodeInfo.unread .nodeIcon {
    background-image: url("images/nodes/710.png");
    background-position: 0px 0px;
}

What I need to know is how to rewrite this code so these node icons display with subforums (secondary forums under the forum) as well. Currently they display the default theme node icon. I have been searching around the site for 20 minutes but have been unable to get a clear answer on this.
 
Top Bottom