Hi,
yes, that solution relies on JavaScript. If you don’t want to use JS, you can use CSS scrolling, for which you will indeed need a wrapper <div> then, e.g.
<div class=”tablepress-scroll-wrapper”>
[table id=123 /]
</div>
and then “Custom CSS” like
.tablepress-scroll-wrapper {
overflow-x: auto;
overflow-y: hidden;
}
Regards,
Tobias
This solution worked for me 🙂
Thanks!
Hmm Horizontal scrolling is not working for me, it crashes my table so I cannot even see table content, only headers 🙁