I would like to place an icon, centered, in between two bootstrap columns that are both on one row? The columns are each col-6 and that cannot change. I would like this icon to always be between the two columns on mobile and on desktop etc. How can I accomplish this?
<a class="row bg-light" href="#">
<div class="col-lg-6 ">
<!-- stuff -->
</div>
I want an Icon here like: <i class="fa-bla"></i>
<div class="col-lg-6 ">
<!-- stuff -->
</div>
</a>