XF 1.5 node icons

dooma

Active member
Hi

I wanna use custom icon for every node so I used the following css rules in the extra.css file but it changes only the icon for logged user not for visitors. How can I solve that ?

Thanks

Code:
.node.node_259 .forumNodeInfo .nodeIcon, .node.node_259 .categoryForumNodeInfo .nodeIcon {
    background-image: url("images/forum/adventure.png");
    background-position: 0px 0px;
    opacity: 0.4;
}
.node.node_259 .forumNodeInfo.unread .nodeIcon, .node.node_259 .categoryForumNodeInfo.unread .nodeIcon {
    background-image: url("images/forum/adventure.png");
    background-position: 0px 0px;
}

Thanks
 
Thanks. I made it. it was an error with the css node number. But now it always show that the forum is unread despite posting a new thread in the node. ( ALWAYS use the opacity image ) .

Also, I think by default the visitors watches the forum as unread icons but that's not happened too. all time readed icons. is there any mistake or something should be added ?

.node.node_259 .forumNodeInfo .nodeIcon, .node.node_259 .categoryForumNodeInfo .nodeIcon {
background-image: url("images/forum/adventure.png");
background-position: 0px 0px;
opacity: 0.4;
}
.node.node_259 .forumNodeInfo.unread .nodeIcon, .node.node_259 .categoryForumNodeInfo.unread .nodeIcon {
background-image: url("images/forum/adventure.png");
background-position: 0px 0px;
}
 
Top Bottom