Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change order for Foundation small-12 column

I have a layout with an image to the left and a text on the right for medium and large views. I want to the text to be BEFORE the image on "small-12" though.

The pull/push mechanism does not seem to work with "xxx-12" columns.

These are my divs:

<div class="large-4 medium-6 small-12">Image</div>
<div class="large-8 medium-6 small-12">Text</div>
like image 229
Matthias Max Avatar asked Feb 26 '14 13:02

Matthias Max


1 Answers

Here you go. You are missing columns. You want to order the small content first. Then push pull http://cdpn.io/xfJph

like image 80
Rafi Avatar answered Nov 09 '22 11:11

Rafi