Check out my simple jsfiddle demonstration here.
I'm looking for a solution where the image appears above the text on smaller window sizes, instead of dropping below due to the HTML order.
Currently, I am considering having duplicate images (one above and one below) and then using CSS to hide/show as needed. Is there a more efficient way to achieve this without loading double the images?
<div class="container">
<div class="row">
<div class="col-sm-6 mobile-only">
<img src="http://placehold.it/350x150" />
</div>
<div class="col-sm-6">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
<div class="col-sm-6">
<img src="http://placehold.it/350x150" />
</div>
</div>
</div>