1

I added a bit of css (@font-face)script in my Luna theme on Bigcartel. the font works but not in safari and mozilla where do I have to look to get this working in those browsers ?

here is the answer I followed and used the script from:

Can I upload a custom font to big cartel

Community
  • 1
  • 1
  • When you inspect element/use Firebug, does the CSS part give you a hint? – lucasnadalutti May 22 '15 at 22:33
  • What versions of the browsers? What file type do the fonts have? Are you loading the fonts from another domain? In what way does it not work (the computer crashes, you get mojibake, etc)? – Mr Lister May 23 '15 at 04:59

1 Answers1

0

You need to configure your webserver to allow font files to be loaded from a separate domain - if you check the Network tab in your browser's web inspector you'll likely see an error about it.

There's lots of good info on how to do that here: How to add an Access-Control-Allow-Origin header

Community
  • 1
  • 1
Nick Endle
  • 916
  • 1
  • 5
  • 10
  • To add this you need access to the .htaccess file at Big Cartel though right? So it cant be done? – pinkp Jul 08 '19 at 12:49
  • 1
    @pinkp the actual font files will need to be hosted on a separate server outside of Big Cartel, and then modify that server's .htaccess to allow outside domains to load the fonts (if necessary) - Big Cartel doesn't allow custom font hosting or .htaccess modification. – Nick Endle Jul 09 '19 at 15:26