XenForo Node icon size

O

Overscan

Guest
I've figured out how to replace the node icons with png images;

CSS:

Code:
/* Forum read & unread icons */

.node--forum.node--read .node-icon i:before{content: url(off.png);}

.node--forum.node--unread .node-icon i:before{content: url(on.png);}

/* Subforum read & unread icons */

.subNodeLink:before{content: url(off.png) !important;}

.subNodeLink.subNodeLink--unread:before{content: url(on.png) !important;}

but my images are too wide (65 pixels) and overlap. Is there a quick way to increase...

Read more

Continue reading...