Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #201727

    So I have set up Calibri as the custom font of choice for my site and it’s working great in FF and Chrome, but it’s not working in IE. In fact, it’s reverting to Times Roman for IE.

    1. How do I get the custom font to work in IE?
    if I can do #1, then
    2. How do I set what default font I want to use in IE?

    #202257

    Does anyone have a way to help me on this?

    #202337

    Hey!

    Can you post the link to your website so we can test it ?

    Best regards,
    Yigit

    #202353

    The URL is http://dev.wiggleworkskids.net

    Thank you for your help.

    #202414

    Hey!

    What is the font that you want to apply? I found this css declaration which is incorrect.

    p, em, div {
    font-family: "body-font"!important;
    }

    Replace it with this code on Quick CSS or custom.css:

    p, em, div {
    font-family: 'Open Sans', sans-serif;
    }

    Cheers!
    Ismael

    #202430

    Basically none of the fonts are being used. They are all reverting to Times Roman. Not just the body text.

    #202657

    Hi!

    The way you have the @font-face structured is not correct as far as I know. Combined with how you have the fonts then declared under it IE is probably just failing while the others are more gracefully falling back on a valid css declaration.

    You can read more about @font-face here:http://www.font-face.com/

    Best regards,
    Devin

    #202753

    OK….so I really appreciate all of the advice, but nothing is helping. I have a few different fonts going on here. There is 1 font for the body content and another font for the H1, H2, H3, etc. NONE of these are working on IE at all. They are all being stripped when the site is viewed on IE. Is there any “fix” to ensure that the fonts are usable on the IE browser?

    #203231

    Hey!

    It seems like you’re using Helvetica for the body at the moment. Try to add following code to the quick css field to change the font

    
    body { font: 16px/1.95em "Calibri", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    
    .helvetica-websave{		font-family: "Calibri", Helvetica, "HelveticaNeue", "Helvetica Neue", Arial, Verdana, sans-serif;	}
    .helvetica-neue-websave{        font-family: "Calibri", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;	}
    

    Regards,
    Peter

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Font in IE different than FF and Chrome’ is closed to new replies.