• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Add characters to user names of invisible members

Paul B

XenForo moderator
Staff member
I've seen this asked a few times so it's probably worth posting here.

If you want to make the user names of invisible members more obvious, you can add characters to the start and end of the user name using CSS.


Add this to EXTRA.css to add a character to the start of the user name:
Code:
.invisible:before {
content: "*";
}


Add this to EXTRA.css to add a character to the end of the user name:
Code:
.invisible:after {
content: "*";
}


Add this to EXTRA.css to add a character to the start and end of the user name:
Code:
.invisible:before {
content: "(";
}

.invisible:after {
content: ")";
}


Change the character between the "" to suit.
 
Top Bottom