Say I have this structure:
<div class="container">
<div class="image">
<img src="image.jpg" alt="">
</div>
<h1 class="title">Hey, tis a title!</h1>
</div>
This will generate a layout precisely like this:
image
title
My goal is to, even if the code stays the same, display the content as:
title
image
How can I achieve this?