I have a table inside a bootstrap container, row and column. Everything works fine on large screens but on smaller screens (phones), some content in the tables causes a horizontal scroll that destroys how the footer looks and the site is just a mess. Is there a fix to this? Here is an example of my code
<div class="container">
<div class="row">
<div class="col-12">
<table class="table">
<tr>
<td>
<!-- code in here -->
</td>
<td>
<!-- overflowing code in here -->
</td>
</tr>
</table>
</div>
</div>
</div>
Here is a link to a page with this issue on my website StudyAfrica - University
Please help, I've tried multiple searches to no avail.


