I am trying to have 2 columns inverted in middle (up) resolutions.
Here is my code on bootply that you can see here as well:
<div class="container">
<div style="border:1px solid red;">
<div class="row">
<div class="col-md-12 col-md-push-12"><div style="background:yellow;">in xs this first</div></div>
<div class="col-md-12 col-md-pull-12"><div style="background:orange;">in xs this after</div></div>
</div>
</div>
</div>
As you can see, in xs screen, the order is the one written on screen.
What I wanted is that on bigger resolutions, the order should be inverted. Even if I push/pull a number of 12 columns (to have them inverted), the result is what you see.
Do you have any suggestion?
Thank you