Hi,
thanks for your post, and sorry for the trouble.
Yes, for that, you can use “Custom CSS” code like
.tablepress-id-1 th,
.tablepress-id-1 td {
border: 1px solid #cccccc;
}
Regards,
Tobias
Thank you very much Tobias.
By the way, on the top there is no top-line on the first line, like as a square without the top cover.
I tried with this command:
.tablepress tbody tr:first-child td {
border-top: 1px;
border-top-width: 1px;
border-top-color: #ccc;
}
but it doesn’t work.
What can I do ?
Hi,
it should be sufficient to add the !important flag, like
.tablepress-id-1 th,
.tablepress-id-1 td {
border: 1px solid #cccccc !important;
}
Regards,
Tobias