I'm facing a layout issue with my Bootstrap grid. When I try to add an icon to a column, it ends up appearing below the text instead of beside it. Can anyone help me identify what's causing this problem?
So far, I've attempted using spans, inline CSS, and vertical-align in my CSS. I even tried adjusting the column width and offset for the adjacent columns.
Here is how the icon currently appears relative to the text
<div class="container border bg-light">
<div class="container pt-2">
<div class="row">
<div class="col-1"><img src="profile.jpg" class="rounded-circle post-img "></div>
<div class="col-2 col-md-1 col-sm-2 offset-sm-0 offset-1 ml-3 mt-2"><span class="font-weight-bold">Luke_KS
</span><i class="verify fa fa-check-circle"></i></div>
<div class="col-2 col-md-1 col-sm-2 mt-2 offset-1 offset-sm-0">
<p class="font-weight-ligh ml-2">21.12.2020</p>
</div>
</div>
<div class="row ">
<div class="col-11 offset-1 mt-n1">
<hr>
</div>
</div>
<div class="row">
<div class="col-9 offset-sm-1 offset-0 ml-sm-2">
<p>
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut
labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores
et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
</p>
</div>
</div>
</div>