Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am designing a website (e.g. mywebsite.com) and this site loads font-face fonts from another site (say anothersite.com). I was having problems with the font face font loading in Firefox and I read on this blog:

Firefox (which supports @font-face from v3.5) does not allow cross-domain fonts by default. This means the font must be served up from the same domain (and sub-domain) unless you can add an “Access-Control-Allow-Origin” header to the font.

How can I set the Access-Control-Allow-Origin header to the font?

share|improve this question

1 Answer

up vote 35 down vote accepted

So what you do is... In the font files folder put an htaccess file with the following in it.

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

also in your remote CSS file, the font-face declaration needs the full absolute URL of the font-file (not needed in local CSS files):

e.g.

@font-face {
    font-family: 'LeagueGothicRegular';
    src: url('http://www.mysite.com/css/fonts/League_Gothic.eot?') format('eot'),
         url('http://www.mysite.com/css/fonts/League_Gothic.woff') format('woff'),
         url('http://www.mysite.com/css/fonts/League_Gothic.ttf') format('truetype'),
         url('http://www.mysite.com/css/fonts/League_Gothic.svg')

}

That will fix the issue. One thing to note is that you can specify exactly which domains should be allowed to access your font. In the above htaccess I have specified that everyone can access my font with "*" however you can limit it to:

A single URL:

Access-Control-Allow-Origin: http://yoursite.com

Or a comma-delimited list of URLs

Access-Control-Allow-Origin: http://yoursite.com,http://anothersite.com
share|improve this answer
1  
You do not have to use full paths. Simple url('/fonts/League_Gothic.woff') format('woff') is enough assuming you keep the 'fonts' folder in the same dir as your .css file. – StrayObject Dec 14 '11 at 14:03
This solution is also valid for cross domain .ajax requests !! Nice! – friguron Dec 14 '11 at 15:20
2  
@StrayObject - the remote CSS file will need to use the full paths. The local CSS file does not have to. – Ash Dec 16 '11 at 16:05
It is apparently not possible to whitelist multiple URLs, comma-delimited or otherwise; see bug 671608 – Tgr Jan 10 at 13:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.