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
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
sorry my code is this (that was a typo)
h3 {
font-weight: 500!important;
}
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
thanks that worked finally