Take a look at this simple HTML snippet on this fiddle that illustrates a specific layout on wide desktop screens:
Here is the code responsible for rendering the above layout:
<div class="container">
<div class="row">
<div class="col-md-4"><img class="img-responsive" src="http://placehold.it/800x400"></div>
<div class="col-md-8>
<h1>Random decisions for emacs, with functions and a minor mode.</h1>
<p>Random decisions for emacs, with functions and a minor mode.
Roll various types of dice, generate random numbers from
</p>
</div>
</div>
On mobile devices (when the page width is reduced), the layout changes to display as follows:
My goal is to reposition the header ("Random decisions..") above the image in mobile view only (without changing anything on desktop). It seems like rearranging rows in mobile view may achieve this, but I'm looking for guidance on achieving this in an organized manner.