Possible to remove heading in category view?

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:

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

maybe this?

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

* may result in accessibility issues

4 Likes

So simple, and such quick response.

Works perfectly.

Thanks!

apparently it may not
http://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.

1 Like