I think the problem you may be running into is that Gecko is trying to save you from yourself *g* I'm seeing the new font fine in Chrome, but not in FF, which means you probably haven't reconfigured your .htaccess to allow cross-domain requests on the font (which Gecko refuses to do by default, unlike the other browsers). You'll want this block in there:
[Error: Irreparable invalid markup ('<filesmatch "\.(ttf|otf|woff|eot)$">') in entry. Owner must fix manually. Raw contents below.]
I think the problem you may be running into is that Gecko is trying to save you from yourself *g* I'm seeing the new font fine in Chrome, but not in FF, which means you probably haven't reconfigured your .htaccess to allow cross-domain requests on the font (which Gecko refuses to do by default, unlike the other browsers). You'll want this block in there:
<FilesMatch "\.(ttf|otf|woff|eot)$"> <IfModule mod_headers.c> Header set Access-Control-Allow-Origin "*" </IfModule> </FilesMatch>
I give up trying to make the HTML cleaner not hate me.
Date: 2012-12-22 08:15 pm (UTC)<FilesMatch "\.(ttf|otf|woff|eot)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>