I was looking for the best solution on how to reorder / shift the position of columns at different breakpoints using the Thoughtbot Neat grid framework?
I would like to move the elements in my title from this (in desktop resolution): 
to this (in mobile resolution):

My HTML looks like this:
<header> <section id='header_elements'> <p id="chocolat_logo"><strong><a href="#"><img alt="Chocolat Restaurant Logo" itemprop="logo" src="/assets/main_logo.png" /></a></strong></p> <nav> <ul> <li id='home_link'> Home </li> <li id='menus_link'> <a href="/menus/evening" itemprop="menu">Menus</a> </li> <li id='drinks_link'> <a href="/menus/wine-list" itemprop="menu">Drinks</a> </li> <li id='contact_link'> <a href="#">Contact Us</a> </li> </ul> </nav> <ul id='top_contact_details'> <li class='social_link' id='twitter_link'> <a href='twitter'> Twitter </a> </li> <li class='social_link' id='facebook_link'> <a href='facebook'> Facebook </a> </li> <li id='top_phone''> <span> (061) </span> 412 888 </li> </ul> </section> </header>
and SCSS looks something like this (for clarity, I deleted everything that was not related to the actual layout, whether it should be relevant, I put the full SCSS code for this header for this meaning ):
header{ @include outer-container;
I'm basically looking for the best / most elegant way to simulate Zurb's push / pull functions for backup in Bourbon / Well maintained.
Thanks so much for any suggestion / help!
source share