I have a 2 column layout in a bootsrap layout as follows:
[left][right]
Its all ok, but when Im on a smaller screen (mobile device) the divs are like this:
[left]
[right]
It is required for the divs to have an order in responsive like this:
[right]
[left]
Because right contains a video which should show at first sight.
Any idea on how to do this, ideally with no additional css or javascript than what bootsrap provides?
Thanks for the help!
Here is the code I have in a nutshell:
<div class="container">
<div class="row">
<div class="col-md-6">
text
</div>
<div class="col-md-6 video-box">
video
</div>
</div>
</div>