i want to move card 5
from 2nd column
under card 1
of 1st column
when a specific breakpoint hit (probably on small screens).
i cant change the whole layout now, but this is required.!
<div class="container">
<div class="row no-gutters">
<div class="col-lg-6">
<!-- Card 1 -->
<!-- Card 2 -->
<!-- Card 3 -->
<!-- Card 4 -->
</div>
<div class="col-lg-6">
<!-- Card 5 -->
<!-- Card 6 -->
<!-- Card 7 -->
</div>
</div>
</div>
This layout is designed this way, i have nested columns and cards inside each column placed perfectly.
NOTE: (The Other Way Around) if some how i can manage to remove 2nd column
totally on a specific break point, I can then arrange each card with flex-box order
. If only i can remove second column totaly with css or javascript on that specific breakpoint!
Any help Would Be Appreciated! :)