XF 1.2 Online users color problem

JMEWLS

Active member
For some reason some of the css customization in some of the users are coming up with the default blue font.

nbadimensions.net/forums/
 

Attachments

  • eg.webp
    eg.webp
    23.5 KB · Views: 14
For some reason some of the css customization in some of the users are coming up with the default blue font.

nbadimensions.net/forums/

That means they are, have set themselves to invisible.

To change the colour of invisible users in the members online list try adding the following to EXTRA.CSS Template choosing the colour of your choice. Was unsure whether you wanted to change the colour but posted the css on the chance you may want to.
Code:
.membersOnline .username.invisible {color: green;}
 
Last edited:
Also I'm guessing there's no way to just show the invisibles by their usergroup color?

what I do is the following and that is apply the color your using for the registered group and apply an opacity setting so your able to distinguish who is hidden

Code:
.membersOnline .username.invisible {color: registeredgroupcolour; opacity: 0.5;}
 
Top Bottom