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.

I am trying to get Google Webfonts to work in IE8 and nothing seems to work. The fonts are loading alright, but instead of loading the appropriate font for italics and bolds, IE8 is winging it by creating faux-weights.

I already followed the instructions found in this very helpful article: http://www.smashingmagazine.com/2012/07/11/avoiding-faux-weights-styles-google-web-fonts/ but to no avail. Italics, bolds and bols-italics are still not working properly.

Any ideas on how to fix this?

This is how I'm calling the fonts by the way:

<!--[if lte IE 8]>
    <link href='http://fonts.googleapis.com/css?family=Lora:400' rel='stylesheet' type='text/css' />
    <link href='http://fonts.googleapis.com/css?family=Lora:400italic' rel='stylesheet' type='text/css' />
    <link href='http://fonts.googleapis.com/css?family=Lora:700' rel='stylesheet' type='text/css' />
    <link href='http://fonts.googleapis.com/css?family=Lora:700italic' rel='stylesheet' type='text/css' />

    <link href='http://fonts.googleapis.com/css?family=Open+Sans:400' rel='stylesheet' type='text/css' />
    <link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic' rel='stylesheet' type='text/css' />
    <link href='http://fonts.googleapis.com/css?family=Open+Sans:800' rel='stylesheet' type='text/css' />
    <link href='http://fonts.googleapis.com/css?family=Open+Sans:800italic' rel='stylesheet' type='text/css' />
    <link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css' />
    <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic' rel='stylesheet' type='text/css' />
<![endif]-->
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.