F
frederic80Jun 10, 2020
Is it possible to re-order for mobile? Is there a class available for that?
In this example on a big screen you will find the text first and on the right side the image. On mobile I want the image first before the text. (col-md-5 before col-md-7). Is that possible?
<div class="row align-items-center gutter-40 col-mb-50 mt-5 mb-5">
<div class="col-md-7">
<div class="heading-block">
<h2>Title</h2>
</div>
<p>Lorem ipsum text.</p>
</div>
<div class="col-md-5">
<img data-animate="fadeInRightBig" src="images/home.png">
</div>
</div>