I'm attempting to align a text-number (span) next to an entry-title (h2) on the same line, with the entry-meta block on the following line, including having the reading time float left. I could use some help with my CSS implementation.
Thank you.
Example:
TOGAF – Enterprise Architecture Framework 3 icon-comment
Avatar-image | abc July 31, 2019 3 mins read
This is my current HTML markup.
<pre>
<header class="entry-header">
<h2 class="entry-title" ><a>TOGAF – Enterprise Architecture Framework</a></h2>
<span class="text-number"> 3 <i class="fa fa-comment"></i> </span>
<div class="entry-meta">
<span class="posted-on">July 31, 2019</span>
<span class="byline"><img>avatar-image</img></span>
<span class="author-name" >abc</span>
</div>
</header>
</pre>