XF 1.5 Custom pictures for forum node images?

Exemption

Active member
Would like to use my own images/icons for forum nodes :D
99d6c2b61c0d4427adacbaceaa3ca8a0.png


How do I do that tho?
 
If you want the same icon for every node then you can just upload a new image and change the path in the Style Properties.

If you want a different image for each node then this thread should help: https://xenforo.com/community/threads/rc-1-custom-node-status-icons-read-unread.10886/
Hmm I currently have
Code:
/* custom status icons */
.node .node_4 .forumNodeInfo .nodeIcon, .node .node_4 .categoryForumNodeInfo .nodeIcon {
    background-image: url("@imagePath/nicon1.png");
}
.node .node_4 .forumNodeInfo.unread .nodeIcon, .node .node_4 .categoryForumNodeInfo.unread .nodeIcon {
    background-image: url("@imagePath/nicon1.png");
}

But my node is looking like this:
2de2b0c0f8ae4c7eb842de7cecb14ee4.png


Link to image: http://mysteriarealms.com/styles/uix_dark/nicon1.png
 
The image you are trying to use is larger than the available space.

You will need to resize the image or edit the template HTML/CSS accordingly.
 
Top Bottom