So you've got a responsive site with tables but it breaks them so anything not viewable on the screen is now cut off.
Here is a simple solution that will allow users to scroll horizontally so they can see the whole table:
<div style="overflow-x:auto;">
<table>
<tr>
<td></td>
</tr>
</table>
</div>
Basically just put it inside a div with the 'style="overflow-x:auto;".
responsive, solutionso, ve, viewable, users, scroll, horizontally, div, quot, overflow, auto, tr, td,