I'm new to working with bootstrap and I've been struggling to change the order of columns when viewed on mobile devices.
Here's what I've attempted so far:
<div class="container">
<div class="row">
<div class="col-lg-5 order-lg-1">
B
</div>
<div class="col-lg-5">
<div class="col-lg-12 order-lg-0">
A
</div>
<div class="col-lg-12 order-lg-2">
C
</div>
</div>
</div>
</div>
My goal is to achieve a layout similar to this: https://i.sstatic.net/9wPO6.jpg
However, when I test my code on mobile, it ends up looking like this: B A C
I would greatly appreciate any assistance with this issue. Thank you!