Reputation: 1629
is there any general reason for which Font Awesome doesn't show up in IE 10?
Another question - what's the @font-face thing all about? Do I have to use it? I haven't done it so far and it works well in Firefox and Chrome, could that be the reason for IE?
(excuse my ignorance, I'm a complete newbie)
Upvotes: 1
Views: 7226
Reputation: 1353
I had the same issue, the actual cause was https secured connection
I was using https protocol changed it to http
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
I Hope it helps
Upvotes: 4
Reputation: 2748
If it is working on other browsers, make sure you are not in compatibility mode or have not accidentally put your site on the compatibility list in IE.
If it doesn't work in others, it has to have 2 classes: fa
AND fa-blah
(assuming Font Awesome 4.x; Font Awesome 3.x has different notation)
Also, check your developer tools F12
to make sure all the fonts and CSS/JS is loading into the site.
Upvotes: 1