kongondo, thanks for pointing it out
BerhnhardB, interesting, so let's say the blog profile uses bootstrap grids, to get posts nested inside of a grid, perhaps I would need to do something with this on line 21 in post.php
<div class='post' id='post-<?php echo $page->id; ?>'>
and change it with something like this...
<div class="row">
<div class='post col-md-3' id='post-<?php echo $page->id; ?>'>
but by doing this I'm not really splitting the posts into columns...
any possible directions on using grids as solution?