Hi. Is there a badge or something very obvious we can do to identify the forum moderators? In our case, when an employee posts something or replies to something, we want it to be unique. On other forums I've seen different colored background/text, badges on avatars, etc. What is my option with Vanilla?
Thanks!
Comments
It also adds a class to every comment like Role_Member or Role_Administrator that will let you target comments with styles per the role of the member who made it.
The "role title" alone isn't enough distinction for what we need.
For now, the CSS class applied is always: Role_{RoleNameNoSpaces}
It changes as you add new roles, etc. If you run into trouble targeting what you want, feel free to ask and I'll take a look.
You'll want to target the li element that each comment is wrapped in, like this: https://imgur.com/PXD8L
So the rule would be something like:
.MessageList .Role_Administrator { background-color: yellow; }