Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

fonts.css:

@font-face {
    font-family: 'ubuntu';
    src: url('../fonts/Ubuntu-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'ubuntu-bold';
    src: url('../fonts/Ubuntu-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'ubuntu-medium';
    src: url('../fonts/Ubuntu-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'ubuntu-mediumitalic';
    src: url('../fonts/Ubuntu-MediumItalic.ttf') format('truetype');
}

The elements get the correct font-family attribute, however the styles are messed up. For example ubuntu-medium gets displayed as regular weight, and ubuntu-bold gets displayed with medium weight fonts. I tried to set the font-weight property at element level and in @font-face too, but it did not bring success. Works properly in Chrome or Firefox. Is there a way to fix this?

share|improve this question

1 Answer

up vote 0 down vote accepted

found an article on this issue: WEBKIT (SAFARI 3.1) AND THE CSS @FONT-FACE DECLARATION

share|improve this answer

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.