Add characters to user names of invisible members

Add characters to user names of invisible members

If you have edited the sidebar_online_users template to show user group user name styling in the sidebar, the CSS is slightly different if you want the characters to be the same colour as the user name.

Use the following instead:
Code:
.invisible span:before {
content: "(";
}
 
.invisible span:after {
content: ")";
}

Credit to Mike.
Top Bottom