@font-face not working with firefox resulting in 206 “Partial Content”
Solution is simply to make sure you're calling the typeface using @font-face from the same subdomain as you are the rest of the site. (In other words, make sure your use of "www." matches both how you're trying to view the site and how it's being pulled by @font-face in your stylesheet.)
I usually use an .htaccess file to do this, which in this case I'd temporarily commented out, then forgotten. That code is:
#comment and uncomment as needed
#RewriteCond %{HTTP_HOST} ^your-site-here\.com$ [NC]
#RewriteRule ^(.*)$ http://www.your-site-here.com/$1 [L,R=301]
# uncomment the following as well:
#RewriteCond %{HTTP_HOST} !^www\. [NC]
#RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [L,R=301]
@font-face not working with firefox
Another new browser to design around…
I know, I know, Google's Chrome browser will use WebKit, which means it'll render somewhat close to Safari.
But we all know it ain't going to be perfect. And the magic of the Google brand will induce at least a million people to switch overnight, mark my words.
So now, a web designer has to work around the unique flaws in IE (6, 7, and 8), Firefox (2, 3), Safari (2,3), and arguably Opera (of a million small revisions), plus the new Chrome.
Fun fun fun, but I guess bullcrap like this helps keep me in business....
