This may only affect Firefox on OSX Lion .
When embedding a custom font
@font-face {
font-family: "my-optima";
src: local('Optima'), url('/css/optima.woff') format('woff');
}
Try to vary name the local(‘font-name’) a bit and the problem will be solved.
Please give more detailed explanation about this font problem! My code is @font-face {
font-family: ‘JournalRegular’;
src: url(‘css/journal-webfont.eot’);
src: url(‘css/journal-webfont.eot?#iefix’) format(‘embedded-opentype’),
url(‘css/journal-webfont.woff’) format(‘woff’),
url(‘css/journal-webfont.ttf’) format(‘truetype’),
url(‘css/journal-webfont.svg#JournalRegular’) format(‘svg’);
font-weight: normal;
font-style: normal;
TNX