I need to reorganize the columns for better responsiveness as the current order is not ideal.
Below is the code snippet:
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-home" role="tabpanel" aria-labelledby="pills-home-tab">
<div class="container">
<div class="row">
<div class="col clienti">
<h4><font color="green">1.</font> Sign up on the platform<br> Create an account</h4><br>
<h4><font color="green">3.</font> Receive offers upon request.<br></h4><p>Relax, you will be notified every time<br>you receive a new offer.</p><br>
<h4><font color="green">5.</font> Wait for your offer to be accepted by<br>the merchant.</h4><br>
</div>
<div class="col clienti">
<h4><font color="green">2.</font> Upload a new request.</h4><br><br>
<h4><font color="green">4.</font> Accept the offer that fits your needs.<br></h4><f><br><br><br>
<h4><font color="green">6.</font> Choose the payment method and pickup location<br>for your parcel.</h4><br>
</div>
</div>
</div>
</div>
<div class="tab-pane fade show active" id="pills-profile" role="tabpanel" aria-labelledby="pills-profile-tab">...</div>
<div class="tab-pane fade" id="pills-contact" role="tabpanel" aria-labelledby="pills-contact-tab">...</div>
The current order in responsive mode is 1,3,5,2,4,6. How can I change it to 1,2,3,4,5,6 for better responsiveness while maintaining the same style in normal mode?
Thank you!