I am currently utilizing Bootstrap and aiming to achieve a specific layout as shown below:
https://i.sstatic.net/dZ4Tt.png
The numbers are indicating the desired order of the divs in a single column on mobile devices. The HTML code I attempted is as follows:
<div class="col-xs-12">
<div class="flex-row">
<div class="col-md-6">
<div class="order-1">
<!-- TITLE SUBTITLE -->
</div>
<div class="order-md-3">
<!-- FILM META AND CONTENT -->
</div>
</div>
<div class="col-md-6">
<div class="order-md-2">
<!-- FILM POSTER -->
</div>
<div class="order-md-4">
<!-- UNDER POSTER. -->
</div>
</div>
</div>
Could someone please point out any mistakes or issues with my current setup?