New Joe
Well-known member
In Xenforo 1 i use the below for having individual node icones/pictures:
I have each icon at a size of 70x70. with read and unread always normal image showing as per the above code.
So for Xenforo 2 how can I do exactly the same, as I guess it's a totally different code the the above or is it just a tweek of the code?
Code:
.node.node_258 .forumNodeInfo .nodeIcon, .node.node_258 .categoryForumNodeInfo .nodeIcon {
background-image: url("/caticon/70x70.png");
background-position: 0px 0px;
height: 70px;
width: 70px;
}
.node.node_258 .forumNodeInfo.unread .nodeIcon, .node.node_258 .categoryForumNodeInfo.unread .nodeIcon {
background-image: url("/caticon/70x70.png");
background-position: 0px 0px;
height: 70px;
width: 70px;
}
I have each icon at a size of 70x70. with read and unread always normal image showing as per the above code.
So for Xenforo 2 how can I do exactly the same, as I guess it's a totally different code the the above or is it just a tweek of the code?