I have arranged two columns side by side.
<div class="row">
<div class="col-lg-2">
I want this column to be at the bottom on mobile devices.
</div>
<div class="col-lg-8">
I want this column to be at the top on mobile devices.
</div>
</div>
When viewing this on my laptop, they appear on the left and right sides respectively. However, when I access the page on my mobile phone, the first column is displayed at the top of the webpage.
I wish to rearrange the order, with the first column on the left side for laptops and at the bottom on mobile phones, instead of the current setup where it is on the left for laptops and top for mobile phones.
I only want to modify the view for mobile phones while keeping the layout intact for laptops.