-1

The font Arizonia doesn't work in Firefox, I tried a lot, set gfx.downloadable_fonts.enabled to false and more, and now I'm asking for help.

I'm using this:

@font-face {
  font-family: 'arizonia';
  src: url(arizonia-regular.woff)format('woff');
  src: url(arizonia-regular.ttf)format('truetype'); 
  font-weight:normal;
  font-style:normal;
}

In every browser it works fine, but in FF. I added the code from google fonts to my site, copied the files to my rootfolder en loaded the css files in DW. It looks a bit ribbed in FF.

j08691
  • 204,283
  • 31
  • 260
  • 272

2 Answers2

1

In case you are running the site locally:

You might need to open about:config and set security.fileuri.strict_origin_policy to false.

After this local documents have access to all other local documents, including directory listings.

ref: CSS @font-face not working with Firefox, but working with Chrome and IE

Community
  • 1
  • 1
Henri Hietala
  • 3,021
  • 1
  • 20
  • 27
  • Thanks for all the suggestions, tried all of them but it doesn't seem to work. The font style is there (in Firefox), but it looks ribbed. But I keep trying till' I got this – user3744658 Jun 16 '14 at 13:31
0

According to Firefox webfonts not loading try font-family: arizonia; without the quotes.

Community
  • 1
  • 1
Ruskin
  • 5,721
  • 4
  • 45
  • 62