beerForo Well-known member Licensed customer Today at 6:38 PM #1 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
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
Mr Lucky Well-known member Licensed customer Today at 7:04 PM #2 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: Last edited: Today at 7:11 PM Upvote 1 Downvote
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: