I m trying to get Internet Explorer to render my pretty fonts. It s not working. They work fine in Firefox and I can see in my Apache access logs that IE has pulled the fonts. So it s parsing the font-face CSS tag, just not rendering them.
The site I used to convert the fonts was: http://www.kirsle.net/wizards/ttf2eot.cgi. I tried that WEFT tool by Microsoft but it wouldn t work properly. After installing and opening it, it said First time running it, do this... then it continually hanged.
Here s my CSS:
@font-face
{
font-family: HelveticaLTCN ;
src: url( HelveticaNeueLTCom-LtCn_0.eot );
src: local( HelveticaNeuel TCom LtCn ), url( HelveticaNeueLTCom-LtCn_0.ttf ) format( TrueType );
}
Any ideas as to why IE isn t rendering the fonts?
EDIT: Should also mention, I m calling the font with:
p .mytext
{
font-family: HelveticaLTCN;
}