Hi,
thanks for your review and the feedback, I really appreciate it!
From what I can see, you are having problems with the responsiveness of the tables, even with the Extension.
Unfortunately, making tables responsive is VERY tricky, which is also caused by how tables work in general (and in HTML specifically, i.e. how they are interpreted by browsers).
There’s just no fixed behavior for a table on small devices, and therefore all solutions need to be created based on the specific demands of a page and table.
In your case (I was able to see the page before the link got redacted by a forums moderator), the problem is made harder by the fixed sidebar that is floating on the right side of the screen. That is taking even more space away from the table, so that it is not shown properly.
To fix that to some degree, please try pasting this CSS code into the “Custom CSS” textarea on the “Plugin Options” screen of TablePress (or append it to the other TablePress CSS in your theme’s style.css):
@media (max-width: 767px) {
.tablepress-id-1 {
float: left;
width: 55% !important;
}
.tablepress-id-1 thead th,
.tablepress-id-1 tbody td {
padding: 8px !important;
height: 40px;
box-sizing: border-box;
}
}
Regards,
Tobias