In my bootstrap layout, I have a row with two columns:
<div class="row">
<div class="col-md-5 col-md-push-7">
Content in this column should display on the right
</div>
<div class="col-md-7 col-md-pull-5">
Content in this column should display on the left
</div>
</div>
Currently, the first column displays on the right and the second column on the left. However, on small or extra small screens, the order is reversed.
I am looking to swap the order of the columns on small and extra small devices, displaying the second column first and the first column second. I have attempted this using pull-right and pull-left classes without success.
Your suggestions would be greatly appreciated.
P.S. The divs should stack when viewed on smaller screens.