I have a website with a 3 column layout, and I want my middle column to have a different height than the side columns, then I have a second row of 2 columns that I have col-pull-left and col-push-right which I want to appear next to the large middle column, however I always get that second row UNDERNEATH my large middle column. I am trying to figure out how to do this using bootstrap. Any suggestions?
I tried floating the middle column, and floating the entire row, i can't seem to get it to work because the second row always clears the first row, so it clears the entire center column as well.
I hope I made myself clear. Basically my code looks like this, (im removing the php for wp)
<div class="row">
<div id="contentWrap1" class="col-sm-3">
<h3>Acerca de CIPM</h3>
<hr>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce eget neque gravida, faucibus lacus vel.</p>
</div>
<div id="contentWrap2" class="col-sm-4 col-sm-offset-1">
//content
//ths is the column that I want to be longer than the others because it contains many posts
</div>
<div id="contentWrap3" class="col-sm-3 col-sm-offset-1">
<h3>Código de Etica</h3>
<hr>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce eget neque gravida, faucibus lacus vel.</p>
</div>
</div>
//now this is the second row that is displaying beneath the first one, however high the center column is, but i would like it to display up next to the center column, with the next #contentWraps on either side. Almost as if te content had 2 sidebars on each side, except i split them up this way for the responsive layout
<div class="row">
<div id="contentWrap4" class="col-sm-3 pull-left" style="float:left; clear: none;">
<h3>Quicklinks</h3>
<hr>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce eget neque gravida, faucibus lacus vel.</p>
</div>
<div id="contentWrap5" class="col-sm-3 pull-right">
<h3>External Newsfeed</h3>
<hr>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce eget neque gravida, faucibus lacus vel.</p>
</div>
</div>