I am in the process of creating a basic blog website. On this website, each user will have a Profile page with a specific layout:
<div class="card mt-3 d-block">
<img class="rounded-circle card-image-top d-inline ml-2 mt-2 mb-2" src="{{ profile.img.url }}" alt="Profile Picture" width="200" height="200">
<div class="card-body d-inline">
<div class="d-inline">
<h1 class="d-inline-block card-title">{{ user.username }}</h1>
</div>
<div class="d-inline">
<p class="card-text d-inline-block">Your bio here...</p>
</div>
</div>
<div class="card-footer ">
<a href="{% url 'edit-profile' %}">
<button class="btn btn-secondary mt-3">Edit Profile Information</button>
</a>
</div>
The current view is similar to this example: https://i.sstatic.net/YElGe.jpg. I would like to move the paragraph to the next line while keeping it aligned with the image. How can I achieve this using CSS or Bootstrap classes?
Thank you for your assistance! :)