XF 1.2 Remove 'Staff Member' Banner Text

The following should remove the staff banner if this is the method you want to take @DRE

Code:
.userBanner.bannerStaff.wrapped span { display: none; }
.userBanner.bannerStaff { display: none !important; }

Edit: Probably best using the code below to hide it and eliminate using that !important i used above.

Code:
.userBanner.bannerStaff.wrapped span, .messageUserBlock .userBanner.bannerStaff  { display: none; }
 
Last edited:
The following should remove the staff banner if this is the method you want to take @DRE

Code:
.userBanner.bannerStaff.wrapped span { display: none; }
.userBanner.bannerStaff { display: none !important; }

Edit: Probably best using the code below to hide it and eliminate using that !important i used above.

Code:
.userBanner.bannerStaff.wrapped span, .messageUserBlock .userBanner.bannerStaff  { display: none; }
Perfect! Just what I was searching for! :D Thank you
 
The following should remove the staff banner if this is the method Edit: Probably best using the code below to hide it and eliminate using that !important i used above.

Doing this I had the .responsive version staff banner still showing when the message template is squashed into a phone. display: none!important; fixed it.
 
Top Bottom