2

I'm running a simple website that uses Font Awesome icons under 4.1

I'm keen to upgrade to 4.2 ad thought it was just a matter of copying the contents of the 4.2 min.css file into the existing 4.1 min.css file on my server but this has resulted in all the icons appearing as empty boxes.

What could I be doing wrong please?

user2840467
  • 801
  • 3
  • 10
  • 19
  • I upgraded from 4.1 to 4.2.2 (font-awesome-sass) and have the same issue as you. – Lyrical Nov 06 '14 at 14:54
  • 1
    **[This](https://github.com/FortAwesome/font-awesome-sass/issues/45)** was my problem. I'm using the sass gem, but check that the url for the font files is the same as the actual location the font files are located. – Lyrical Nov 06 '14 at 15:37
  • Thanks so much - it was the path to the faults that was causing the problem - never thought to check that :) – user2840467 Nov 06 '14 at 21:48

2 Answers2

1

Thanks to user Lyrical! Similar set up to you but having checked the location of the font files I found them in a different location. Quick shuffle of files later and everything is fine!

user2840467
  • 801
  • 3
  • 10
  • 19
0

This could be a stupid answer but are you using the correct format for the icons. ie. the extra 'fa'

<i class="fa fa-camera-retro fa-lg"></i>
Ben
  • 13
  • 3