Hi,
thanks for that!
To center those images, please try adding this to the “Custom CSS”:
.tablepress-id-1 img {
display: inline;
}
Additionally, you will have to fix an issue in the CSS
.tablepress-id-2 .row-1,
.tablepress-id-2 .row-2,
{
text-align: center;
}
There must not be a comma right before the {
, so please change that to
.tablepress-id-2 .row-1 td,
.tablepress-id-2 .row-2 td {
text-align: center;
}
Additionally, we can vastly reduce the CSS for that largest block of CSS that you are using to center the cells in table 1. Please try replacing that large chunk with
.tablepress-id-1 th,
.tablepress-id-1 td {
text-align: center;
}
.tablepress-id-1 .column-1,
.tablepress-id-1 .row-14 td {
text-align: left;
}
Regards,
Tobias