Struggling to design a header image with text positioned at the bottom? Despite creating rows and columns, the text keeps moving to a new line. I need to have two instances of text in the header image, but adjusting absolute position has not helped. I've also experimented with d-flex properties like align-items-end and justify content...
There must be a simple solution to this issue, I just need to find out how to ensure the text appears at the bottom.
How would you go about creating a header image like the example below?
Header Image
<div class="fluid-container" style="width: 100%">
<div class="row" style="">
<div class="col"> <img class="card-img-top" src="images/electrical-repair.png" width="100%" height="auto" alt=""/>
<h4 class="text-danger d-flex justify-content-center bannerText text-center">Premiere Commercial Electrical Services in the Northwest</h4>
</div>
</div>