I have been attempting to realign columns in bootstrap, but without success so far. In desktop view it looks fine as seen here. However, when the size is condensed, it appears like this tablet view. My goal is to swap the positions of the owner gateway column and the logged in column.
HTML:
<div class="col-xs-4 col-sm-4 col-lg-3" id="logo">
<img src="http://f.cl.ly/items/2B2c3t3d0N0r1F0F1m05/logo-white.png" class="img-responsive">
</div>
<div class="col-xs-8 col-sm-4 col-lg-6" id="main-title">
<h1 class="title">Owner Gateway</h1>
</div>
<div class="col-xs-4 col-sm-4 col-lg-3 " id="logged-in">
<p class="logged">Logged in as Mr Jones</p>
<p class="log">Log out</p>
</div>
</div>
Thank you in advance.