@font-face {
font-family: 'Droid Sans';
font-style: normal;
font-weight: 400;
src: local('Droid Sans'), local('DroidSans'), url('//themes.googleusercontent.com/static/fonts/droidsans/v3/s-BiyweUPV0v-yRb-cjciBsxEYwM7FgeyaSgU71cLG0.woff') format('woff');
}
@font-face {
font-family: "Droid Sans";
font-style: normal;
font-weight: 700;
src: local("Droid Sans Bold"), local("DroidSans-Bold"), url("//themes.googleusercontent.com/static/fonts/droidsans/v3/EFpQQyG9GqCrobXxL-KRMQFhaRv2pGgT5Kf0An0s4MM.woff") format("woff");
}
...And of course when I'm using that font I'm using
font-family: Droid Sans,sans-serif;, and this works in Opera, Safari, Firefox, and Chrome...but, of course...I'm having issues with IE. After searching the web I found out a few things:
* This font will not convert to eot format, according to onlinefontconverter.com
* IE9 definitely fully supports woff format fonts, and is the version using (and targeting)
* According to the developer tools included with IE, the
font-family: Droid Sans,sans-serif;is definitely being used. Since these tools are not clear about which of the two fonts is in use, I tested it, and it was clear that the font that's being taken is the sans-serif fallback font, instead of the Droid Sans
I would appreciate any guidance or assistance in resolving this issue. Thank you!

New Topic/Question
Reply


MultiQuote



|