...">

Font-awesome link makes the icon blue. how do you change this color?

 <a href="#resume" rel="facebox">
    <i class="fa fa-align-left"></i>
 </a>

      

I couldn't find where it changes the icon to blue.

How do you change color?

+3


source to share


1 answer


Badges

inherit a property color

from its parents. Maybe you can point like this



a .fa {
color: #777;
}

      

+3


source







All Articles