I'm a newcomer to Bootstrap and am embarking on the journey of creating a responsive website. I've been facing some challenges with the Bootstrap Grid system particularly when it comes to arranging columns for different screen sizes.
Below, you'll find the "grid" setup that's currently in place (and hopefully valid). My main issue arises when the site is viewed on a tablet or phone - at that point, I wish for the column "----2B----
" to be pushed down below the column "----1C----
". Despite my attempts at push/pulling the column, I haven't been successful in achieving this outcome.
Could it be that I have set up everything incorrectly, or is there a way to make this happen?
<div class="row center-block rounded-div white">
<div class="col-md-6 col-md-push-6 col-lg-5 col-lg-push-7">
<div class="row">
<div class="col-lg-12">
-----1A-----
</div>
</div>
<div class="row">
<div class="col-lg-12">
-----1B-----
</div>
</div>
<div class="row">
<div class="col-lg-12">
-----1C-----
</div>
</div>
</div>
<div class="col-md-6 col-md-pull-6 col-lg-7 col-lg-pull-5">
<div class="row">
<div class="col-lg-12">
-----2A-----
</div>
</div>
<div class="row">
<div class="col-lg-12">
-----2B-----
</div>
</div>
<div class="row">
<div class="col-lg-12">
-----2C-----
</div>
</div>
<div class="row">
<div class="col-lg-12">
-----2D-----
</div>
</div>
</div>
</div>
I've even tried to sketch out what I envision achieving as the final result: