# Tag experts plugin

**URL:** https://meta.discourse.org/t/tag-experts-plugin/355898
**Category:** Feature
**Created:** [March 5, 2025, 4:08pm UTC](https://meta.discourse.org/t/tag-experts-plugin/355898 "2025-03-05T16:08:07Z")
**Posts on this page:** 1
**Showing post:** 5

<div class="post-metadata">

### Author: ![manuel](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/manuel/32/468169_2.png) [@manuel](https://meta.discourse.org/u/manuel)
#### Post date: [March 8, 2025, 9:39am UTC](https://meta.discourse.org/t/tag-experts-plugin/355898/5 "2025-03-08T09:39:24Z")

</div>

> [@markvanlan](#):
>
> if all you want is “posts in a topic tagged with X, created by users in GroupA are decorated differently”

If that would indeed be all, you’d have all selectors in the document already. So you can decorate with CSS, the pattern would be:

```plaintext
target the topic with a tag
  target the post by a member in a primary group
     decorate a part of the post

```

For example:

```plaintext
body.tag-expert-1 { 
  .topic-post.group-tag-experts-1 {
    .cooked {
      ...
    }
  }
}

```

This will only work for primary groups, as they are added to the post as a class selector.

Then you could get for example:

 ![Screenshot From 2025-03-08 09-36-04](https://global.discourse-cdn.com/meta/original/4X/8/3/8/838a47fc947f20e900767206e74997228b0b6bc9.png)

Or set slightly different styles for different Expert groups:

 ![The image is a screenshot of a website post titled "Confines" by Benedict.Boyer, featuring text about concluding notions, pride, rooftops, and reptiles, described as having "quiet." (Captioned by AI)](https://global.discourse-cdn.com/meta/original/4X/9/9/d/99d44eedcfce983b4a61cba2de31567ff0e46e1d.png)

Had just done something similar recently:

> [@Gamification on a fantasy forum](https://meta.discourse.org/t/gamification-on-a-fantasy-forum/354514/1):
>
> _Scribes_ are the Experts group. Their posts are distinguished with a highlighted background:
> 
> ![Screenshot From 2025-02-20 16-48-11](https://global.discourse-cdn.com/meta/original/4X/0/7/4/07418ebd640e4a479f97a981b0e635199bb4b149.jpeg)

---

_[View the full topic](https://meta.discourse.org/t/tag-experts-plugin/355898)._
