ChristopherBerman Posted July 20, 2020 Share Posted July 20, 2020 Can anyone tell me how to add color to font awesome in HTML? EXAMPLE: <span class="fa-stack fa-lg"> <i class="fa fa-square-o fa-stack-2x"></i> <i class="fa fa-twitter fa-stack-1x"></i> </span> fa-twitter on fa-square-o<br> Little un sure how to add color Link to comment
stressbunny Posted July 20, 2020 Share Posted July 20, 2020 (edited) With CSS: .fa-twitter { color: #38A1F3; } Inline: <i class="fa fa-twitter" style="color:#38A1F3;"></i> Edited July 20, 2020 by loueeze Changing colours to HEX ChristopherBerman 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment