I have a list of 3 elements displayed as follows:
- text - image
- image - text
- text -image
On mobile devices I want to have the text of the second element image before the image, but I am getting the opposite right now
<div class="container">
<div class="sub-title">
<div>simpleTextDynamicIndoorNavigationTitle</div>
</div>
<div class="row">
<div class="col-md-6">
<div>text sample</div>
</div>
<div class="col-md-6">
<img src="assets/img/img1.png">
</div>
</div>
<div class="row">
<div class="col-md-6">
<img src="assets/img/img2.png">
</div>
<div class="col-md-6">
<div>text sample</div>
</div>
</div>
<div class="sub-title" id="use-cases-title">
<div>simpleTextUseCasesTitle</div>
</div>
<div class="row" >
<div class="col-md-6">
<div>text sample</div>
</div>
<div class="col-md-6">
<img src="assets/img/img3.png">
</div>
</div>
</div>