I am facing an issue with my Bootstrap templates where they resize on all devices, instead of just mobile devices, and maintain responsive behavior only after a certain width. For instance, on a 15-inch laptop, when I resize the browser to half the size, it adds a horizontal scrollbar to the page.
I have attempted using container-sm and container-md classes, but the template still shrinks when I resize the browser. How can I modify this behavior? Here is what my current template looks like:
<div class="wrapper">
<div class="container-fluid pl-4 pr-5 pt-4">
<div class="row">
<div class="col-sm-3">
<!-- content -->
</div>
<div class="col-sm-6 order-2">
<!-- content -->
</div>
<div class="col-sm-3 order-sm-2 order-sm-2">
<!-- content -->
<div id="#footerPlaceholder"></div>
</div>
</div>
</div>
</div>
Is there a way for me to ensure that columns only resize back after reaching a specific size?
EDIT: My goal is to have all elements within the "HTML" tag resize only for screens smaller than 600px in width.