I need to reorganize the columns on my bootstrap website. Currently, I have four images displayed like this:
However, when the screen size is reduced below 768px, I want them to be rearranged as follows:
I considered using bootstraps push-pull feature, but it seems that option is no longer available in bootstrap 4.
Any assistance with this issue would be greatly appreciated.
<!--top photos -->
<div class="row" id="top_photos_div">
<div class="col-sm-3">
<img src="photos/top_photos/busy_bee.JPG" class="img-full-width_height" alt="bee" />
</div>
<div class="col-sm-3">
<img src="photos/top_photos/midsummer_skies.JPG" class="img-full-width_height" alt="midsummer sunset" />
</div>
<div class="col-sm-3">
<img src="photos/top_photos/swans.jpg" class="img-full-width_height" alt="swans" />
</div>
<div class="col-sm-3">
<img src="photos/top_photos/wood.jpg" class="img-full-width_height" alt="a forest" />
</div>
</div>