I have the following HTML & want to enhance it by adding an image BENEATH the h1 element using CSS.
<div class="wf-wrap">
<div class="page-title-head hgroup">
<h1>Kookshop</h1>
</div>
<div class="page-title-breadcrumbs">...</div>
</div>
This is the image I'd like to include:
How can this be accomplished? While we're familiar with using the ::after selector in CSS to append text after an element, my preference is to insert the image beneath the text instead.