XF 2.2 Display image before user banner text

Rengobli

Member
I do have some banners with FontAwesome icons in front of them like this one: 1667159436447.webp, and I'd like to replace this icon with a 64x64 image.
Does anyone know how to do that?

Kind regards
Markus
 
Hey there,

Thanks for your responses!
I'm currently using this code:
CSS:
.bannerForumModerator {
    color: black;
    background: #fc035e;
    &:before {
        .m-faBase();
        .m-faContent(@fa-var-user-shield);
        padding-right: 4px;
    }
}
 
Top Bottom