Hi,
thanks for your question.
Your issue is not actually with the TablePress Responsive Tables Extension (as you are not using that).
Your problem is that that your table just has too much content to fit on a small screen, so that the browser creates the overlap.
If you look at the table on a phone, there’s just not enough room, so there’s nothing that TablePress can do here. ??
Your best chance is to reduce the font size and the padding in the table on phones, e.g. with this “Custom CSS”:
@media (max-width: 767px) {
.tablepress-id-3 tbody td div p {
font-size: 12px !important;
}
.tablepress-id-3 tbody td {
padding: 3px;
}
}
Also, the way how you are doing the formatting (with <div>
and <p>
elements) is not really nice, as that creates overhead.
Regards,
Tobias