I'm having trouble with my column ordering using bootstrap 3.3.2. I'm not even sure this this is possible!! It's probably best if I show you...
My code is currently:
<div class="row">
<div class="col-md-3 col-md-push-6">A</div>
<div class="col-md-6 col-md-pull-3">B</div>
<div class="col-md-3">C</div>
</div>
It does re-order them as B - A - C for desktop, but I am not sure how to get element C to drop down below A. It's the order I want for mobile as I know bootstrap 3 is mobile-first...
any ideas?