I am dealing with two headers in my layout
<section>
<header class="col-lg-9">
<!-- some content -->
</header>
<header class="col-lg-3">
<!-- some content -->
</header>
</section>
The positioning of the headers is causing an issue where the first header appears on the left and the second one on the right. In a mobile view, this order becomes problematic as the first header displays before the second due to scrolling.
To address this, I need to swap the positions of the headers for mobile devices (max 991px width). This means that the second header should appear on the left side and the first header on the right, reversing their order in the mobile view.