I created the @ font-face css rule and all font formats using Font Squirrel and works fine in all browsers that I still have, but not on IE7. The font does not load at all.
You can see the site in the mode http://grupogamma.socialsnack.com/
The @ font-face rules are at http://grupogamma.socialsnack.com/wp-content/themes/gamma/style.css and the fonts are at http://grupogamma.socialsnack.com/fonts/
My css snippet created by Font Squirrel:
@font-face { font-family: 'UniversCondensedLight'; src: url('/fonts/univers-condensedlight-webfont.eot'); src: url('/fonts/univers-condensedlight-webfont.eot?#iefix') format('eot'), url('/fonts/univers-condensedlight-webfont.woff') format('woff'), url('/fonts/univers-condensedlight-webfont.ttf') format('truetype'), url('/fonts/univers-condensedlight-webfont.svg#webfonteM3WTEhs') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'UniversCondensed'; src: url('/fonts/univers-condensed-webfont.eot'); src: url('/fonts/univers-condensed-webfont.eot?#iefix') format('eot'), url('/fonts/univers-condensed-webfont.woff') format('woff'), url('/fonts/univers-condensed-webfont.ttf') format('truetype'), url('/fonts/univers-condensed-webfont.svg#webfontPDfnu2z9') format('svg'); font-weight: normal; font-style: normal; }
EDIT:
Using Wireshark, I was able to check the font. really loaded, and returns 200 OK. The content type is application / vnd.ms-fontobject. Thus, the font is loaded, but simply not used / not displayed correctly.
css fonts font-face
Johnco
source share