Tagged: ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #451697

    HI
    on the page below, I have added this to my quick css, since the fonts were rendering too bold on Firefox & Safari:

    h3 {
    font-weight: 500
    }

    but it’s still displaying at 600 (default) I have redone it multiple times. http://imgur.com/lmb983V
    any ideas what is going on? all the other css changes are working fine
    thanks
    Nancy

    #451701

    Hey Munford!

    semi colon is missing after your value, please change your code to following one

    h3 {
    font-weight: 500;
    }

    If that too does not help, please add !important rule

    Cheers!
    Yigit

    #451704

    sorry my code is this (that was a typo)
    h3 {
    font-weight: 500!important;
    }

    #451936

    Hey!

    The current font doesn’t support font weight of 500. Try to use 400:

    #top #wrap_all .header_color h3, #top #wrap_all .main_color h3, #top #wrap_all .alternate_color h3 {
      font-family: 'Droid Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
      font-weight: 400;
    }
    

    Cheers!
    Ismael

    #454329

    thanks that worked finally

    • This reply was modified 8 years, 10 months ago by Munford.
Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘CSS changes not working’ is closed to new replies.