XF 1.5 How to not use banner text with custom css?

ozm8ey

Member
Hello' well basically I wanna use an image as a banner using extra css, i got it to work but the problem is, it shows the group text like admin or whatever behind it. How do i make it so it doesn't show the user text banner? if i put nothing in the box then nothing appears.
 
Text in user banner is wrapped in <strong>, so you need to hide it:
Code:
.messageUserBlock .userBanner.bannerWhatever strong { display: none; }
 
Top Bottom