# How hide description category in Subcategory List Style (Boxs, Rows,...)

**URL:** https://meta.discourse.org/t/how-hide-description-category-in-subcategory-list-style-boxs-rows/254107
**Category:** Development
**Created:** [February 5, 2023, 1:05pm UTC](https://meta.discourse.org/t/how-hide-description-category-in-subcategory-list-style-boxs-rows/254107 "2023-02-05T13:05:33Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![thaidb](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/thaidb/32/68488_2.png) [@thaidb](https://meta.discourse.org/u/thaidb)
#### Post date: [February 5, 2023, 1:05pm UTC](https://meta.discourse.org/t/how-hide-description-category-in-subcategory-list-style-boxs-rows/254107/1 "2023-02-05T13:05:33Z")

</div>

I want to hide description category in Subcategory List Style. How can we do it?  
Thank you!

 ![image](https://global.discourse-cdn.com/meta/original/4X/1/2/4/12455b84899428bccabf05dbb8f26e6db5e77e8d.png)

---

<div class="post-metadata">

### Author: ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)
#### Post date: [February 5, 2023, 4:46pm UTC](https://meta.discourse.org/t/how-hide-description-category-in-subcategory-list-style-boxs-rows/254107/2 "2023-02-05T16:46:51Z")

</div>

Hello,

You can hide the description with adding the following to Desktop \> CSS. 🙂

Boxes with Subcategories

```scss
.category-boxes {
  .description {
    display: none;
  }
  .subcategories {
    margin-top: 1em;
  }
}

```

* * *

Rows style

```scss
.categories-list {
  .category {
    .category-description {
      display: none;
    }
    .subcategories {
      margin-top: 0.5em;
    }
  }
}

```

---

<div class="post-metadata">

### Author: ![thaidb](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/thaidb/32/68488_2.png) [@thaidb](https://meta.discourse.org/u/thaidb)
#### Post date: [February 5, 2023, 4:53pm UTC](https://meta.discourse.org/t/how-hide-description-category-in-subcategory-list-style-boxs-rows/254107/3 "2023-02-05T16:53:20Z")

</div>

Thank you so much.  
**Wish you a healthy recovery.**

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [March 7, 2023, 4:53pm UTC](https://meta.discourse.org/t/how-hide-description-category-in-subcategory-list-style-boxs-rows/254107/4 "2023-03-07T16:53:39Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
