Currently, I am utilizing a basic modal window which was constructed from Bootstrap's (4.4) sample.
This modal consists of a header division:
<div class="modal-header">
<h5 class="modal-title">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
I am interested in adding a subtitle beneath the h5 title, but due to the "modal-header" class defining this division as flex, I have been unsuccessful in my attempts.
All of my efforts resulted in the content appearing alongside this h5 header.