Hi, I'm trying to use fad fontawesome icons in the following code block:
<div class="col-sm-6 col-lg-4">
<div class="feature-box fbox-center fbox-effect">
<div class="fbox-icon">
<a href="#"><i class="icon-screen i-alt"></i></a>
</div>
<div class="fbox-content">
<h3>Responsive Layout</h3>
<p>Powerful Layout with Responsive functionality that can be adapted to any screen size. Resize browser to view.</p>
</div>
</div>
</div>However when i do, it seem to right justify the icon. I've tried using pr-4 which helps but it's not consistent across all icons. Is there any support for fontawesome, particularly fad's.
my example code block is:
<div class="col-sm-6 col-lg-4">
<div class="feature-box fbox-center fbox-effect">
<div class="fbox-icon">
<a href="#"><i class="fad fa-photo-video"></i></a>
</div>
<div class="fbox-content">
<h3>Responsive Layout</h3>
<p>Powerful Layout with Responsive functionality that can be adapted to any screen size. Resize browser to view.</p>
</div>
</div>
</div>