I am doing a project for my school where i have to make it responsive, due to some restrictions on bootstrap where it screwed up the viewport with older versions of IE.
Now i have to turn the website non-responsive, instead of slowly deleting all col-sm/col-xs
classes or re-code the whole website, is there anyway i can disable the responsiveness? Thanks
Example:
<div class="container content">
<div class="row">
<div class="col-xs-12 col-lg-3 gap">
<a href="./page_a3da.html" rel="external"><img src="page_home/A3DA_Tab.jpg" alt="banner_a3da"></a>
</div>
<div class="col-xs-12 col-lg-3 gap">
<a href="./page_fi.html" rel="external"><img src="page_home/FI_Tab.jpg" alt="banner_fi"></a>
</div>
<div class="col-xs-12 col-lg-3 gap">
<a href="./page_it.html" rel="external"><img src="page_home/IT_Tab.jpg" alt="banner_it"></a>
</div>
<div class="col-xs-12 col-sm-3 gap">
<a href="./page_mma.html" rel="external"><img src="page_home/MMA_Tab.jpg" alt="banner_mma"></a>
</div>
</div>
</div>