Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've tried all the other solutions provided here and elsewhere and I'm still having issues with webfonts loading in ie9.

Implemented the fix to the .htaccess file:

Header set Access-Control-Allow-Origin "*"

Not receiving any css3 error messages in ie developer console.

Thing is when the initial page loads, the fonts don't load but when I navigate to any other page on the site, the fonts then load. If I go back to the initial page the fonts will now load too.

Feel like I've tried everything I was able to find on the web.

Heres my css:

/** FONTS **/

@font-face { font-family: 'UniversUltraCondensedRegular'; src: url('../fonts/univers-ultracondensed-webfont.eot'); /* IE9 Compat Modes / src: url('../fonts/univers-ultracondensed-webfont.eot?#iefix') format('embedded-opentype'), / IE6-IE8 / url('../fonts/univers-ultracondensed-webfont.woff') format('woff'), / Modern Browsers / url('../fonts/univers-ultracondensed-webfont.ttf') format('truetype'), / Safari, Android, iOS / url('../fonts/univers-ultracondensed-webfont.svg#UniversUltraCondensedRegular') format('svg'); / Legacy iOS */ font-weight: normal; font-style: normal; }

@font-face { font-family: 'WebSymbolsRegular'; src: url('../fonts/websymbols-regular-webfont.eot'); /* IE9 Compat Modes / src: url('../fonts/websymbols-regular-webfont.eot?#iefix') format('embedded- opentype'), / IE6-IE8 / url('../fonts/websymbols-regular-webfont.woff') format('woff'), / Modern Browsers / url('../fonts/websymbols-regular-webfont.ttf') format('truetype'), / Safari, Android, iOS / url('../fonts/websymbols-regular-webfont.svg#WebSymbolsRegular') format('svg'); / Legacy iOS */ font-weight: normal; font-style: normal; }

Here's the link to the site: enter link description here

Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.