Hello All.
I was noticing the same issue. Firefox will not allow you to load @font-face hosted on other domains (or sub-domains).
I came across this solution which seems to be working for my websites sub-domains. In the .htaccess file in your root folder :
RewriteEngine On RewriteBase / <FilesMatch "\.(ttf|otf|woff)$"> <IfModule mod_headers.c> Header set Access-Control-Allow-Origin "*" </IfModule> </FilesMatch>I am no expert in this, and really don’t understand why it works, but it does for me.
Cheers.
Thanks for posting this! Solved my font issue in Firefox. Much appreciated.