# Possible to remove heading in category view?

**URL:** <https://meta.discourse.org/t/possible-to-remove-heading-in-category-view/38144>\
**Category:** UX\
**Created:** [2016年一月18日 22:31 UTC](https://meta.discourse.org/t/possible-to-remove-heading-in-category-view/38144 "2016-01-18T22:31:55Z")\
**Posts on this page:** 4\
**Page:** 1

<div class="post-metadata">

**Author:** ![maigaard](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/maigaard/32/121259_2.png) [@maigaard](https://meta.discourse.org/u/maigaard)\
**Post date:** [2016年一月18日 22:31 UTC](https://meta.discourse.org/t/possible-to-remove-heading-in-category-view/38144/1 "2016-01-18T22:31:55Z")

</div>

I am trying to remove the heading for the category view. I want to get rid of the entire header table with the headers circled here:

 ![](https://global.discourse-cdn.com/meta/original/3X/9/a/9a5a89a0f173d6c0347031b94ba6e5c63c7ed550.png)

I think this should be possible in CSS - and I can remove entire columns - but I want just the headers (and the vertical space they take up) removed.

Any help appreciated.

Best  
Soren

---

<div class="post-metadata">

**Author:** ![Mittineague](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mittineague/32/114259_2.png) [@Mittineague](https://meta.discourse.org/u/Mittineague)\
**Post date:** [2016年一月18日 22:47 UTC](https://meta.discourse.org/t/possible-to-remove-heading-in-category-view/38144/2 "2016-01-18T22:47:02Z")

</div>

maybe this?

```plaintext
table.topic-list.categories thead {
  display: none;
}

```

\* may result in accessibility issues

---

<div class="post-metadata">

**Author:** ![maigaard](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/maigaard/32/121259_2.png) [@maigaard](https://meta.discourse.org/u/maigaard)\
**Post date:** [2016年一月18日 22:49 UTC](https://meta.discourse.org/t/possible-to-remove-heading-in-category-view/38144/3 "2016-01-18T22:49:38Z")

</div>

So simple, and such quick response.

Works perfectly.

Thanks!

---

<div class="post-metadata">

**Author:** ![Mittineague](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mittineague/32/114259_2.png) [@Mittineague](https://meta.discourse.org/u/Mittineague)\
**Post date:** [2016年一月18日 22:57 UTC](https://meta.discourse.org/t/possible-to-remove-heading-in-category-view/38144/4 "2016-01-18T22:57:52Z")

</div>

> [@Mittineague](#):
>
> may result in accessibility issues

apparently it may _not_

> **[WebAIM: Creating Accessible Tables - Data Tables](https://webaim.org/techniques/tables/data)**

> thead, tfoot, and tbody

> The thead and tfoot elements define header and footer rows for tables. They provide no accessibility functionality and are generally only of use when a long table is printed - the head and/or foot rows will repeat at the top or bottom of each printed page. Similarly, the tbody element defines the body content of a data table (meaning anything that’s not a thead or tfood). Again, this element does not provide any additional accessibility benefit, but there is no harm in using it for table styling or other reasons.
