XF 2.1 Change icons

DayOfWar

Member
Hello guys, how can I change an icon without putting directly the <i etc.> code in the phrase? For example in the footer
 
If you mean the share icons, you can add something like this to the extra.less template:

CSS:
.shareButtons-button.shareButtons-button--facebook>i:before
{
    content: "\f38e";
}
 
Top Bottom