By John Avis · March 26, 2018
In responsive design there are times when on a mobile screen you want to hide some options with a button to show them, but on a large screen always show these options.
In responsive design there are times when on a mobile screen you want to hide some options with a button to show them, but on a large screen always show these options.
For example, a search results page with a bunch of search filters. On a desktop you might want those filters always visible, but on a small screen there might not be enough room and you don't want the search filters at the end of the page because the user would have to scroll all the way to the bottom to find them (they might not know they exist), and you don't want them taking up valuable room at the top of the page.
In these cases you want the user to see that filters are available at the top of the small screen page, and give them the option to show these filters with a button.
You can do this quite simply in Bootstrap 4 with a few classes.
In my example, I'll create a simple two column layout: one for search results and one for search filters. On large screens I want the search filters to be on the right side, but on small screens I want them to appear above the search results and be hidden.
So I'll put the search filters column first but use the "order-" classes to re-order them for larger screens (above md).
<div class="row">
<div class="col-md-3 order-md-last">
<!--Search filters-->
</div>
<div class="col-md-9 order-md-first">
<!--Search results-->
</div>
</div>
<button type="button" data-toggle="collapse" data-target="#filters" class="d-block d-md-none btn btn-primary btn-block mb-3">Filters ▾</button>
<div id="filters" class="collapse d-md-block">
<!--Search filters-->
</div>
© Copyright 2017-2025 John Avis. All rights reserved
This website is not affiliated with or endorsed by Bootstrap or its creators.