jpaugh
jpaugh

Reputation: 7035

Sporadic Font-Icons on Internet Explorer 9

I have a website using Glyphicons and Font-Awesome font icons on two different pages, with the same behavior: The icons do not show up in IE9, but work perfectly in Chrome/Firefox.

Things that do work:

Things that don't work:

Things I've looked at:

These may or may not be helpful, but seem to represent the state of things.

Upvotes: 0

Views: 183

Answers (1)

rogergarrison
rogergarrison

Reputation: 1294

This seems like the bug reported at github for Font Awesome. Check out thorst's solution it seems to fix it for most people.

For the link-phobic:

I had to change font-awesome.css

From:

src: url('../font/fontawesome-webfont.eot?#iefix') format('eot'), url('../font/fontawesome-webfont.woff') format('woff'), url('../font/fontawesome-webfont.ttf') format('truetype'), url('../font/fontawesome-webfont.svg#FontAwesome') format('svg'); 

To:

src: url('../font/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), url('../font/fontawesome-webfont.woff') format('woff'), url('../font/fontawesome-webfont.ttf') format('truetype'), url('../font/fontawesome-webfont.svg#FontAwesome') format('svg');

Upvotes: 1

Related Questions