I have generated an @font-face kit from fontsquirrel.com for one of our client's sites. We have the site running on a staging (http) and live (https) server. The site is built on .NET
The issue I'm having is that the font does not load on IE8. It works fine in IE9, Chrome, Firefox and Safari.
The steps I took are as follows:
- Generated kit using .TTF font file supplied by the client
- Copied font files into assets folder
- Referenced font files in CSS file using the generated
@font-facecode (below)
@font-face {
font-family: 'font-name';
src: url('../../fonts/font-name-webfont.eot');
src: url('../../fonts/font-name-webfont.eot?#iefix') format('embedded-opentype'),
url('../../fonts/font-name-webfont.woff') format('woff'),
url('../../fonts/font-name-webfont.ttf') format('truetype'),
url('../../fonts/font-name-webfont.svg#font-name') format('svg');
font-weight: normal;
font-style: normal;
}
I've been researching possible fixes and have, so far, tried the following unsuccessfully:
- Re-generated the font kit
- Checked all required mime types are set in Web.config
- Checked the font-family rule is being picked up in IE using developer tools
- Checked the declaration is not being overridden in other CSS files
- Added the downloaded font kit test to a staging server and tested in IE8
Note:
The test I uploaded to the staging server is working fine on IE8. This would suggest that either it's server-related or that there's something amiss in our CSS. I'm 99% sure I've ruled out anything fishy in the CSS, though.
Any help would be greatly appreciated!