Reply To: Fonts don't work in firefox and chrome

Home Forums Use Any Fonts Fonts don't work in firefox and chrome Reply To: Fonts don't work in firefox and chrome

#6484
Dinesh
Keymaster

Hi Carolin,

Currently there is cross domain issue. Your fonts are trying to loading from media subdomain.

So please keep this in your htaccess file of the main folder and it should allow the font loading.

<FilesMatch "\.(ttf|otf|eot|woff)$">
  <IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin "*"
  </IfModule>
</FilesMatch>

Hope this helps.

Thanks