GraublauWeb font was working fine in Firefox for me but not in IE. I have the before's and after's to show you the changes that I had to make in order to have it working in IE. To implement font-face that will work across browsers, use Fontspring @font-face syntax.
BEFORE:
@font-face {
font-family:'GraublauWeb';
src: url(http://pics.cssrule.com/fonts/GraublauWeb.eot);
src: url(http://pics.cssrule.com/fonts/GraublauWeb.otf) format("opentype");
}
AFTER:
@font-face {
font-family:'GraublauWeb';
src: url("http://pics.cssrule.com/fonts/GraublauWeb.eot?") format('eot'), url(http://pics.cssrule.com/fonts/GraublauWeb.otf) format("opentype");
}
Thanks for sharing! Good job!
ReplyDeleteThanks for sharing your info. I really appreciate your efforts and I will be waiting for your further write ups thanks once again.
ReplyDeletehttp://www.cssbakery.com/2011/05/fixing-font-face-problems-in-ie.html
ReplyDeleteThanks a lot this helped me !!!
ReplyDeletethanks a lot, its works!
ReplyDeleteThank you for the comment :)
ReplyDelete