XF 1.2 Turn off strikethrough for banned members?

Joshua

Active member
Licensed customer
Is there an easy way to turn off strikethrough for banned members? I can't find the proper setting.

Thanks in advance!
 
that isnt default functionality (i dont think).. I believe you may have added something in your extra CSS at some point to add strikethrough styling to the banned state
 
You can find it here:

username_styles.css

Edit that directly, or try adding this to your extra.ss:

Code:
body .username .banned
{
   text-decoration: none;
}

Believe it will work for you.
 
Back
Top Bottom