Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

centering text below font awesome icon

Good day, I'm using Font-awesome and bootstrap 4. Please check my Script first

<div class="container">
      <div class="row">

          <div class="col">
            <div class="row"> 
              <span class="fa fa-building fa-5x text-center"> </span>
            </div>
            <div class="row">
              <h3 class="text-center">Company Profile</h3>
            </div>
            </div>

          <div class="col">   
            <div class="row"> 
              <span class="fa fa-shopping-cart fa-5x text-center"> </span>
            </div>
            <div class="row">
              <h3 class="text-center">Shopping Cart</h3>
            </div>
           </div>

         <div class="col">   
            <div class="row"> 
              <span class="fa fa-industry fa-5x text-center"> </span>
            </div>
            <div class="row">
              <h3 class="text-center">Inventory Control</h3>
            </div>
           </div>


        <div class="col">   
            <div class="row"> 
              <span class="fa fa-users fa-5x text-center"> </span>
            </div>
            <div class="row">
              <h3 class="text-center">User Management</h3>
            </div>
        </div>
      </div>
  </div>

with my script above i get this

enter image description here

as you can see, the fa icons is not at the center of text. How can i make the fa-icon in center ?

like image 894
YVS1102 Avatar asked Dec 21 '25 03:12

YVS1102


1 Answers

Add the text-center class to the div surrounding your icon instead of of the icon span like so:

<div class="row text-center"> 
  <span class="fa fa-users fa-5x"> </span>
</div>
like image 76
Steve K Avatar answered Dec 24 '25 11:12

Steve K



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!