I’ve got User Groups for e.g. Volunteers & Donors & etc who have contributed to keeping the site running. I’d like to visually distinguish the posts by these users, for example by adding a border around the entire post:
.group-Volunteers > article {
margin-top: 0.2em;
margin-bottom: 0.2em;
border: 0.2em dashed var(--tertiary);
border-radius: 1em;
padding-left: 0.5em;
}
This is working as expected for one of the groups, but not another. Are there rules for when the group-*
class will be applied to the wrapper container?
Example: Introducing Gizz Tapes! - #13 by jamie - Some Context - KGLW.net Forum
The user who posted this is a member of the Volunteers group, however the post’s wrapper div does not have group-Volunteers
class like I’d expect. (Note that in this topic are several posts from users in the Core group, and their posts do have a group-Core
wrapper.)