I am currently having two columns like this:
<div class='row'>
<div class='col-sm-7'>foo</div>
<div class='col-sm-5'>blah</div>
</div>
I would like them to stack up this way on mobile : [5] above [7] I tried the following :
<div class='row'>
<div class='col-sm-7 col-push-7'>foo</div>
<div class='col-sm-5 col-pull-5'>blah</div>
</div>
Unfortunately, it is not working, it still appears as being: [7] above [5] on mobile.
What am I missing ?