Reputation: 1
I'm trying to add horizontal scroll for overflow to tables without the need to edit tables individually in MediaWiki. I installed the Pivot theme which is based on Zurb Foundation.
Here's what the table looks like right now:
Example: https://wiki.d-addicts.com/Love_Story_in_Harvard
Upvotes: 0
Views: 445
Reputation: 535
Foundation's CSS has a wrapper class you can add to a table for it to scroll.
<div class="table-scroll">
<table></table>
</div>
You can find the API docs here: https://foundation.zurb.com/sites/docs/table.html#scrolling-table
Upvotes: 1