XF 2.3 place a Staff member banner icon

the same way you did with administrator.
on what version is running here in your css you would use
Code:
.userBanner.userBanner--staff
i think.
 
Add this to your extra.less template:

CSS:
.userBanner.userBanner--staff:before
{
    .m-faContent(@fa-var-shield);
    margin-right: 3px;
}

Alternatively, you can use this:

CSS:
.userBanner.userBanner--staff .userBanner-before
{
    .m-faContent(@fa-var-shield);
    margin-right: 3px;
}

Either one should work just fine. Of course you'll want to change "shield" to whichever font awesome icon you'd like to use there.
 
Back
Top Bottom