Hi Rick,
thanks for the email with the details. I was now able to take a look.
From what I can see, this is indeed caused by some CSS, namely in the style.css of your theme. There, you can find this near the bottom:
.mycustomtable tfoot tr th {
background: #eee !important;
padding: 15px !important;
}
.mycustomtable thead th {
background: #207943;
color: #fff;
}
.mycustomtable tbody tr.row-2 td {
background: #DAF0E3 !important;
}
As you have given the CSS class mycustomtable
as an “Extra CSS class” to that TablePress table, this CSS will also apply there.
The first block of this snippet is responsible for the changes in the last row. The fix there would therefore be to turn off the “Table Footer” checkbox on the “Edit” screen of that table.
The green background of the second row is caused by the third block of code in this snippet.
Unless you are using those changes in other tables, you could remove this entire block of CSS, or no longer give the mycustomtable
CSS class to the affected TablePress tables.
Regards,
Tobias