Looking to rearrange the order
of items using flexbox, but hitting a roadblock because one of the items I want to reorder is in a different div and not a direct child of the same parent as the other items.
<div class="wrapper">
<div class="something">
<img src=""></img>
<p>PARAGRAPH</p>
</div>
<h1>TITLE</h1>
<h4>SUBTITLE</h4>
</div>
Attempting to move the paragraph below the title and subtitle. See my codepen for an example here.
Any suggestions on how to accomplish this?