Google Fonts is great. But, I seem to have a problem with Internet Explorer. A font (say, Arvo) styled as bold won’t render as bold in Internet Explorer. It does in all other browsers though.
Am I missing something?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
How about making an IE specific stylesheet and in it declare something like
* { font-weight: regular; }It’s usually not advised to use the
*selector, so try to narrow it down to wherever the font is used. For example, perhaps it’s just paragraph text:p { font-weight: regular; }, or just links:a {...;}etc. etc.Good luck!