Apprentice Programmer
Apprentice Programmer

Reputation: 1515

font-awesome icons not displaying

I installed the gem "font-awesome-sass" , and my static page is not loading the icons. Texts are appearing instead of the actual line

<li><i class="fa fa-twitter fa-1g "></i> fa-twitter</li>

this is an example how i'm calling it. I'm not sure where to go from here, since the guide to use font-awesome was pretty much installing the gem

Any suggestions?

Upvotes: 0

Views: 2613

Answers (1)

Tom Prats
Tom Prats

Reputation: 7911

You need to require it in the asset pipeline still

Put this in your application.css.scss

*= require font-awesome

Noted on the last line of their readme

https://github.com/FortAwesome/font-awesome-sass

Upvotes: 2

Related Questions