I'm currently experimenting with creating a unique blog post layout using Bootstrap. My goal is to have the blog image on the left side, the title on the right side, and the author's name below the title. However, I've encountered an issue where the author text is appearing on the right side instead of at the bottom as intended.
Here is the code snippet I am working with:
<div class="blog">
<div class="row">
<div class="col-md-6 d-flex align-items-center">
<img src="images/photo/blog-1.png" alt="">
<h4>13 of My Favorite UI/UX Goodies</h4>
<p class="flex-column align-self-end">By <span>Danny Sapio</span></p>
</div>
</div>
</div>