Hi,
to center the header row as well, just extend the code to
.tablepress-id-123 thead th,
.tablepress-id-123 tbody td {
text-align: center;
}
For multiple tables, it would have to look like
.tablepress-id-1 thead th,
.tablepress-id-1 tbody td,
.tablepress-id-2 thead th,
.tablepress-id-2 tbody td,
.tablepress-id-3 thead th,
.tablepress-id-3 tbody td {
text-align: center;
}
and so on.
Alternatively, you could make this the default setting for all TablePress tables with a shorter version:
.tablepress thead th,
.tablepress tbody td {
text-align: center;
}
Regards,
Tobias