Reply To: Seems not working in IE and FF

Home Forums Use Any Fonts Seems not working in IE and FF Reply To: Seems not working in IE and FF

#1556
Dinesh
Keymaster

Please try these link to add to your .htaccess file. It should allow to load font files.

# BEGIN REQUIRED FOR WEBFONTS

AddType font/ttf .ttf
AddType font/eot .eot
AddType font/otf .otf
AddType font/woff .woff

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

# END REQUIRED FOR WEBFONTS

Thanks