Acabo de instalar las fuentes Aller Regular y Aller en negrita en mi sitio a través de @ font-face (generado por fontsquirrel.com).@ font-face se bloquea IE8
Aquí es el CSS:
@font-face {
font-family: 'AllerRegular';
src: url('library/fonts/aller_rg-webfont.eot');
src: url('library/fonts/aller_rg-webfont.eot?#iefix') format('embedded-opentype'),
url('library/fonts/aller_rg-webfont.woff') format('woff'),
url('library/fonts/aller_rg-webfont.ttf') format('truetype'),
url('library/fonts/aller_rg-webfont.svg#AllerRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'AllerBold';
src: url('aller_bd-webfont.eot');
src: url('library/fonts/aller_bd-webfont.eot?#iefix') format('embedded-opentype'),
url('library/fonts/aller_bd-webfont.woff') format('woff'),
url('library/fonts/aller_bd-webfont.ttf') format('truetype'),
url('library/fonts/aller_bd-webfont.svg#AllerBold') format('svg');
font-weight: normal;
font-style: normal;
}
Esto funciona bien cuando se utiliza éter de las fuentes en Firefox, sin embargo cuando utilizo IE8 la página web falla intentos para reabrir y bloquea de nuevo. Un ejemplo en vivo se puede encontrar en http://rcnhca.org.uk/sites/first_steps/
¿Alguien sabe lo que está causando esta locura?