I have on page text and image under that text (multiple blocks). Sample : JsFiddle
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="http://vignette4.wikia.nocookie.net/mrmen/images/5/52/Small.gif/revision/latest?cb=20100731114437" class="img-responsive"/>
<br/>
<h4>Test Text</h4>
</div>
<div class="col-md-6">
<img src="http://vignette4.wikia.nocookie.net/mrmen/images/5/52/Small.gif/revision/latest?cb=20100731114437" class="img-responsive"/>
<br/>
<h4>Test Text</h4>
</div>
</div>
But on small screens text which is under image can be recognized by user as text for next image, which is wrong.
So i want to move text above the image on small screens.
Ideas that i have currently - add duplicate of existing text and add bootstrap classes hidden/visible to them. And switch text in order to size of screen.
But i hope there is more ellegant solution without adding same text again but in different possition