Styling a Tablepress table has been giving me problems. There is a persistent solid line on the left border of the table. This problem seems to be impervious to custom css. Any advice on how to overcome this?
Hey smlsit!
Can you please give us a link to the page with the table?
Regards,
Ismael
http://www.scottlambrecht.com/curling-world-rankings/
I haven’t been able to remove the top and left edge border.
Hey!
Please add following code to Quick CSS in Enfold theme options under Styling tab
tr:first-child th { border-top-style: none; }
tr th:first-child { border-left-style: none; }
Regards,
Yigit
Yigit, thanks for the help. That fixed part of the problem. It worked for the first row, but the left border persists on the non-header rows.
Hi!
Please try following code
.tablepress tbody td{
border-left: none;
}
to remove the border from the remaining table fields.
Best regards,
Peter
Thank you!