I am currently working with Bootstrap column classes and have set up four columns as follows:
<div class="col-md-3">
@include('schedulizer.classes-panel')
@include('schedulizer.time-span-options-panel')
@include('schedulizer.other-options-panel')
</div>
<div class="col-md-9 col-centered">
@include('schedulizer.schedule-panel')
</div>
This setup gives me a layout that looks like this:
https://i.sstatic.net/KLzEN.png
However, in mobile view, the main element (the schedule) is pushed all the way to the bottom like this:
https://i.sstatic.net/WxSW0.png
My question is, is there a way to adjust the layout so that the column is "pushed" to the top when a smaller screen resolution is detected?