XF 2.3 place a Staff member banner icon

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.
 
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.

Hi, is it possible to put a banner on the staff?
 
Back
Top Bottom