Swap which content block appears first in mobile view
On desktop view the two content blocks display side-by-side. On mobile view, they stack in a single col, however, the content gets swapped so that the content that would ordinarily be in the right-hand block on desktop view now takes first place in mobile view.
How can I modify that so it remains secondary content?
<section class="showcase">
<div class="container-fluid p-0">
<div class="row no-gutters">
<div class="col-lg-6 order-lg-2 features">
<h2>Header</h2>
<p class="lead mb-0">Text here.</p>
<p class="lead mb-0">Text here.</p>
</div>
<div class="col-lg-6 order-lg-1 my-auto showcase-text">
<h2>Header</h2>
<p>Text here.</p>
</div>
</div>
</div>
</section>
Thank you.
