How to use custom code to get rid of grid i in a table?

I’ve tried to use the developer tools to see if i can find the div class that controls the table header which is called “ag-header-cell”.

I’m just a bit unsure what to do with this in terms of custom code?
Does anyone know how I’ll go about using custom code to get rid of grid i in a table or just the table header?

Hi,

if you want to get rid of the header =>
custom code, header of the page, replace table1 by your table id

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

Hi @matthieu_chateau I want to keep the header just the cell lines within the header I want to target.

Tell me if this works as you expect:

<style>
#table1 .ag-header-cell.ag-focus-managed {
    display: none !important;
}
</style>
2 Likes

Does exactly what I want, thank you very, very much.