Is there a way to reorder two divs that are next to each other in a row on mobile? I want the right side div (col-md-9) to be displayed first.
I attempted using flex ordering, but unfortunately it caused layout issues throughout my site.
<div class="row">
<div class="col-md-3">Left side</div>
<div class="col-md-9">Right side, displayed first on mobile or tablet</div>
<div class="clearfix"></div>
</div>
When viewing the site on mobile or tablet, I specifically want the col-md-9 div to be the first one shown.