tarajungle
New Member
What is the best way to move columns when the size is small?Here is the example:\[code\] <div class="row"> <div class="two columns">...</div> <div class="seven columns">...</div> <div class="three columns">...</div></div>\[/code\]I want the two column to move below the seven columns when the screen size is small. The only way I figured out to do it is to do something like:\[code\] <div class="row"> <div class="two columns hide-for-small">...</div> <div class="seven columns">...</div> <div class="two columns show-for-small">...</div> <div class="three columns">...</div></div>\[/code\]But it seems kind of messy and can be confusing. Is there a better way?