Removing column headings from the bottom of the tables
If you are using the Table or DataTables view type...
...you probably want to hide the column headings from the bottom of those tables:
Then, you just need to apply these CSS styles to your theme stylesheet ( How to add custom CSS to your website):
For Table views:
.gv-table-view tfoot{ display:none; }
For DataTables:
.gv-datatables tfoot{ display: none;}
And voilĂ :