XF 2.0 How to change this child forum's icon to customize my forum?

gxd

Member
How to change this child forum's icon in xenforo 2.0? Where is code can I change this?
Thank you very much.
change-icon.webp
 
Find extra.less in templates

Add:


.node-icon i { display: none; }
.node-icon { background-image: url('../images/whatever.gif); background-repeat: no-repeat; background-position: center; }
.node--read .node-icon { opacity: 0.3; }


Assuming you keep your images in a root directory called images
 
  • Like
Reactions: gxd
Find extra.less in templates

Add:


.node-icon i { display: none; }
.node-icon { background-image: url('../images/whatever.gif); background-repeat: no-repeat; background-position: center; }
.node--read .node-icon { opacity: 0.3; }


Assuming you keep your images in a root directory called images
Excellent, so all I need now is a .gif. I've asked @Arty for help there. His latest work is amazing. Love how he makes things move and change sizes at the same time. https://simplesvg.com/
 
Last edited:
Top Bottom