how to rearrange bootstrap columns? i have a 2 column layout on desktop view
this is what i have in desktop view
im trying to achieve this layout on mobile view, is this possible?
how to rearrange bootstrap columns? i have a 2 column layout on desktop view
this is what i have in desktop view
im trying to achieve this layout on mobile view, is this possible?
To enable this you will want to have each div include the following classes:
<div class="col-lg-6 col-xs-12"></div>
Look into the bootstrap grid system for more info.
i have found the answer
Template
<div class="col-lg-4 col-xs-12">1</div>
<div class="col-lg-8 col-xs-12 top-features">2</div>
<div class="col-lg-4 col-xs-12 item-brand">3</div>
<div class="col-lg-8 col-xs-12"><4/div>
<div class="col-lg-4 col-xs-12">5</div>
<div class="col-lg-8 col-xs-12">6</div>
Styles
@media screen and (min-width: 769px) {
.top-features {
order: 2;
}
.item-brand {
order: 1;
}
}