Design of my site is designed for minimum resolution 1200px (Large devices Desktops in terms of bootstrap). I want people who have a lower resolution screen have Horizontal Scroll.
I have the following template:
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
//...menu
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8">
<div id="table-trips-list">
//...grid content
</div>
</div>
<div class="col-lg-4">
<div id="search-drivers">
//...filters
</div>
</div>
</div>
</div>
</body>
What is the correct way to do this?