I've found this to be a security feature of most current browsers. I have also found a solution. You need to add this to the root .htaccess file:
Code: Select all
# Allow access from all domains for webfonts.
# Alternatively you could only whitelist your
# subdomains like "subdomain.example.com".
<IfModule mod_headers.c>
<FilesMatch "\.(ttf|ttc|otf|eot|woff|font.css|css)$">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
</IfModule>
Thanks to this site for a description of the problem, as well as the solution:
http://meyermed.com/2015/03/fix-font-aw ... isplaying/