How to show only admins in the users’ list (user list)?

You are here:

If you do not want to show the user in the users’ list, you can use the next CSS to hide users. Only keep admins visible.

#list-frame #list > div:not(.admin) {
  display: none;
} 

To know how to edit web CSS, click this link.

Categories