Font Awesome - Local Install [Deleted]

For legacy support, here is Font Awesome 3.2.1

I'm including this because it's possible the 3.2.1 series will be discontinued after the release of 4.2.x

You should however use the most current version always (in my opinion).


Font Awesome by Dave Gandy - http://fontawesome.io
 

Attachments

  • Like
Reactions: rdn
I alsmot certain its a FA issue and has nothing to do with your tut. however i was wondering if anyone could provide some insight as to what may be causing Fa to not load some icons in the firefox browser.. I have done some research and possibly IE7 is the culprit.
 
I alsmot certain its a FA issue and has nothing to do with your tut. however i was wondering if anyone could provide some insight as to what may be causing Fa to not load some icons in the firefox browser.. I have done some research and possibly IE7 is the culprit.
Link to site?
 
Link to site?
http://dobermanresources.com/
so far i am only using font awesome on the portal page (Paw Print) in the title and footer for the share icon..

Icons render just fine in all other browsers except FF.. and most icons render even in FF however not all of them for example the paw prints..

Firefox..
Capture_06182014_141342.webp

Chrome..
Capture_06182014_141351.webp
Firefox is the only browser that certain icons don't seem to want to render on. Icons are even rendering on various Mobile (Android/iOS browsers.
 
Last edited:
http://dobermanresources.com/
so far i am only using font awesome on the portal page (Paw Print) in the title and footer for the share icon..

Icons render just fine in all other browsers except FF.. and most icons render even in FF however not all of them for example the paw prints..
Well you're using the CDN and not hosting these locally.... So as you suspect it is a FA code issue.

I'm not exactly sure what is causing the issues, but @Sheldon and @Russ are Font Awesome experts when it comes to possible conflicts.

My only guess in resolving the issue is that you use the full format and not the short format...ie
PHP:
class="fa fa-paw fa-fw"
If you're doing this via extra.css
make sure you're using
PHP:
content: "\f1b0";
And not mistakenly using the full code

 
@FredC

Appears your style is calling an old version of Font Awesome which is overwriting the 4.1.0 font awesome call back you may of placed manually(style is calling 4.0.3) which the paw wasn't included in.

That was absolutely the problem.. I believe i am now serving all FA locally..
 
That was absolutely the problem.. I believe i am now serving all FA locally..
Yep, all your Font Awesome is loading locally.

FYI: You do have some page errors when looking at your site via firebug, but this was true before you added Font Awesome.
 
Top Bottom