Hi Scott,
I’m not exactly sure why this happens. The code seems correct, and it should work like that. For some reason, the browser is just not using it…
Can you please try to replace all current “Custom CSS” with this:
.wp-table-reloaded-id-4,
.wp-table-reloaded-id-4 td,
.wp-table-reloaded-id-4 th {
border: none !important;
border-collapse: collapse !important;
border-spacing: 0 !important;
}
.wp-table-reloaded tr td {
padding: 6px !important;
}
.wp-table-reloaded tr th {
padding: 16px !important;
}
(Yes, it looks almost exactly the same, but I’m hoping that by a new copy/paste maybe some invisible white-space characters get removed.)
Regards,
Tobias
Hi Tobias,
Thank you for your suggestion.
Unfortunately the new code has not made the boarder of the table disappear?
I have also noticed the first row is higher than the rest and makes the table look uneven – any suggestions to fix both of these problems?
Thank you for your help.
Regards Scott.
Hi Scott,
ok, another try 🙂 I spotted another possible source for the border.
.wp-table-reloaded-id-4,
.wp-table-reloaded-id-4 tr,
.wp-table-reloaded-id-4 td,
.wp-table-reloaded-id-4 th {
border: none !important;
border-collapse: collapse !important;
border-spacing: 0 !important;
}
.wp-table-reloaded tr td {
padding: 6px !important;
}
.wp-table-reloaded tr th {
padding: 16px !important;
}
And yes, the first row (if it is a “table head row” will be higher, because you gave it a larger padding than the regular cells (16px compared to 6px).
If you want them equal, just change the 16 to a 6 in the last block of code.
Best wishes,
Tobias