Remove or hide label row from table block

Is it possible to remove or hide the header row / label row in the table block?

I have several table blocks below each other on a page and I only need it once.
Thanks in advance

Hi!

Yes it’s possible.

Insert this custom code in the header of the page(s) where your tables are.
Replace #table1 by the id/name of your block.

<style>
#table1 .ag-header {
  display: none;
}
</style>

Let’s say you have multiple tables in one page and you want to remove the header from these different tables, the logic would be:

<style>
#table1 .ag-header,
#table2 .ag-header,
#table3 .ag-header {
  display: none;
}
</style>
2 Likes

Wow you are so quick! It works thanks a lot Matthieu.