# How would I target Unsolved topics with CSS?

**URL:** https://meta.discourse.org/t/how-would-i-target-unsolved-topics-with-css/268370
**Category:** Development
**Tags:** solved, css
**Created:** [June 8, 2023, 4:44pm UTC](https://meta.discourse.org/t/how-would-i-target-unsolved-topics-with-css/268370 "2023-06-08T16:44:57Z")
**Posts on this page:** 1
**Showing post:** 5

<div class="post-metadata">

### Author: ![Canapin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/canapin/32/119591_2.png) [@Canapin](https://meta.discourse.org/u/Canapin)
#### Post date: [June 15, 2023, 7:57am UTC](https://meta.discourse.org/t/how-would-i-target-unsolved-topics-with-css/268370/5 "2023-06-15T07:57:44Z")

</div>

I’m not sure we can get which topics belong to a “solvable” category on the topic list.

If you’re not going to change the category setting every week, you can modify the code you and @Lilly wrote but add a loop and make it easier to read and maintain. It will still use the category classes.

You can re-use the solution provided here to this intent:

> [@How to enable reactions only for certain categories?](https://meta.discourse.org/t/how-to-enable-reactions-only-for-certain-categories/267029/2):
>
> There is no such feature. A quick way to do it would be to hide the reactions selector with CSS, such as: .category-general-resources .discourse-reactions-picker { display: none; } If you want to iterate through multiple categories and make it easier to maintain, you can use a SCSS loop like this: $categories: 'general', 'site-feedback', 'staff'; @each $category in $categories { .category-#{$category} .discourse-reactions-picker { display: none; } } The category class is visible…

---

_[View the full topic](https://meta.discourse.org/t/how-would-i-target-unsolved-topics-with-css/268370)._
