Why does this fontface render in IE8:
@font-face {
font-family: \'Aller\';
src: url(\'aller_rg-webfont.eot\');
src: url(\'aller_rg-webfont.eot?#iefix\'
Try creating a new .eot
file with one of the others using an online woff/ttf/svg to eot convertor.
If this new file doesn't work, then it might be a problem with the font itself. Sometimes IE6-8 has a fit if the Fontname and Family Name are not the same within the actual font file. To fix it:
Element
> Font Info
Every issue I've had with font-face - if the CSS was correct - worked with one of the above two solutions, so good luck :-) Maybe even try saving the font without any changes in FontForge and converting that online before you fiddle with the name properties.
Under IIS (MVC environment) I had to add the following rule to my Web.config:
<system.web>
<httpHandlers>
<add verb="GET" path="*.eot" type="System.Web.StaticFileHandler" />
<add verb="GET" path="*.svg" type="System.Web.StaticFileHandler" />
<add verb="GET" path="*.ttf" type="System.Web.StaticFileHandler" />
<add verb="GET" path="*.woff" type="System.Web.StaticFileHandler" />
<add verb="GET" path="*.otf" type="System.Web.StaticFileHandler" />
</httpHandlers>
</system.web>
but finally works when added
.sass and .less css
files happy coding... by sivakumar