css - Firefox webfonts not loading -
i'm having issue webfonts in firefox, other browsers (including ie) work perfectly.
my issues webfonts won't load @ all.
i've looked @ possible solution, editing htaccess file (http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems) i've had no luck.
the other thing can in firefox's error console following warning:
error in parsing value "src". skipped next declaration.
here's sample of font-face
code:
@font-face { font-family:angelinaregular; src:url(../fonts/angelina-webfont.eot); src:url(../fonts/angelina-webfont.eot?iefix) format(eot), url(../fonts/angelina-webfont.woff) format(woff), url(../fonts/angelina-webfont.ttf) format(truetype), url(../fonts/angelina-webfont.svg#webfontovuhcgpn) format(svg); font-weight:normal; font-style:normal; }
any ideas?
in experience, firefox picky expecting quotes in @font-face
rules:
@font-face { font-family: angelinaregular; src: url('../fonts/angelina-webfont.eot'); src: url('../fonts/angelina-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/angelina-webfont.woff') format('woff'), url('../fonts/angelina-webfont.ttf') format('truetype'), url('../fonts/angelina-webfont.svg#webfontovuhcgpn') format('svg'); font-weight: normal; font-style: normal; }
Comments
Post a Comment