I need to reorder div in my mobile version, but I cannot use display:table in my parent div cause it breaks my responsive layout. I need to switch between additional 1 and 2.
<div class="product-view">
<form action> </form>
<div class="box-additional1"></div>
<div class="box-additional2"></div>
</div>
Cannot use the solution described here: CSS layout, use CSS to reorder DIVs Should I use javascript instead?
thanks