I'm encountering an issue where I am attempting to align an SVG icon to the right of an H4 element and center it vertically using Bootstrap 5, but it's not working as intended.
<div class="container-fluid">
<div class="row">
<div class="col-lg-6">
<div class="justify-content-start"><h4>Title 1</h4>
</div>
<div class="justify-content-end">SVG goes here</div>
</div>
</div>
</div>
Additionally, I have a secondary container with the same content that is positioned to the right of this one. Despite my efforts, the SVG icon refuses to float to the right as desired.
I would greatly appreciate any assistance or guidance on resolving this issue.