XF 2.3 Add fontawesome after username?

beerForo

Well-known member
Licensed customer
What is the best way to add an icon here for a group. Already have the color and bold in the CSS section of the group, can I add it there? So the username would look like:

username (icon here)

Thanks
 
In the CSS rule block add a random neutral rule e.g. font: inherit;

This creates a class for the username in that group.

Then use your browser inspect to find the class, e.g. .username--style18

(Or just use the above class with the usergroup id number)

Then in extra less add you icon

Code:
.username--style18:after
{
 
    .m-faContent(@fa-var-sparkles);

}

Then voila:

Screenshot 2026-04-15 at 19.04.54.webp
 
Last edited:
Back
Top Bottom