forocom
Well-Known Member
Hi, I'm trying to add costum icons to the nodes, but none of these two attempts has worked for me
Code added in EXTRA.css
First attempt
Second attempt
What am i missing here ?
Code added in EXTRA.css
First attempt
Code:
.node .node_216 .forumNodeInfo .nodeIcon, .node .node_216 .categoryForumNodeInfo .nodeIcon {
background-image: url("@imagePath/styles/spritesheet.png"); background-position: -5px -5px;
}
.node .node_216 .forumNodeInfo.unread .nodeIcon, .node .node_7 .categoryForumNodeInfo.unread .nodeIcon {
background-image: url("@imagePath/styles/spritesheet.png"); background-position: -5px -5px;
}
Second attempt
Code:
.node .node_216 .forumNodeInfo .nodeIcon, .node .node_216 .categoryForumNodeInfo .nodeIcon {
background-image: url("/styles/spritesheet.pn);
background-position: -5px -5px;
background-repeat: no-repeat;
width: 48px; << Add this in.
height: 48px; << Add this in.
}
What am i missing here ?