XF 2.0 FontAwesome Avatar?

Untested, but this should work. Add this to extra.less

SCSS:
// Turn default avatar into FontAwesome icon
.avatar--default--dynamic{
    span{
        display: none;
    }   
    *::before{
        content: '\f007';
        font-family: "FontAwesome";
    }
}
 
Top Bottom