Resource icon

Font Awesome on Menu and Sub Menus

How can I add custom icons?

See post by Chris D at https://xenforo.com/community/threads/replace-fa-node-icon-with-an-image.135695/post-1183162

Add to extra.less template:

Code:
/* change forum nodes from FA to icons Chris D */
.node-icon i { display: none; }
.node-icon { background-image: url('styles/default/xenforo/xenforo-favicon.png'); background-repeat: no-repeat; background-position: center; }
.node--read .node-icon { opacity: 0.5; }

Replace styles/default/xenforo/xenforo-favicon.png with an icon of your choice. You can find many free ones at


I found it works best at sizes from 32x32 to 50x50.
 
Thanks, you're very kind. But that only change forum nodes. Im using this pugin for that.

I want to add custom icons in menu (navbar).
 
Top Bottom