To remove lines above and uder the table, which are belong to Header and Footer of your Data Tables.
For this follow the next:
- Go to the table you need and open it inside your WordPress admin area
- Find CSS tab and insert there:
#supsystic-table-1 thead th, thead td {
border-bottom: none;
}
— Will remove the upper line only- And this code will remove only the bottom line –
#supsystic-table-251 {
border-bottom: none;
} - And click Save
#supsystic-table-1 thead th,
#supsystic-table-1 thead td,
#supsystic-table-1 tfoot th,
#supsystic-table-1 tfoot td {
border-bottom: none;
}
Where – supsystic-table-1 – 1 is the number of your table id
In the case you want to erase only one line –