XF 2.2 Usergroup banner

If you mean the default staff member banner, add this to the extra.less template:

Less:
.userBanner--staff
{
    &:before{
        .m-faBase();
        .m-faContent(@fa-var-star);
        padding-right: 4px;
    }
}

Modify the code as required.
 
Set a banner for the admin user group and add the icon code to the extra.less template.

 
Top Bottom