Customized CSS based on user role/groups

If you install this theme component, you can target user groups with CSS:

like this:

body.group-<your-group-name> .some-page-element-class {
    display: none;
}

without the component, you can also use:

.something {
  display: none;
}
.staff .something {
   display: block;
}
4 Likes