View Single Post
Old 03-17-2012, 10:04 AM  
potter
Confirmed User
 
Industry Role:
Join Date: Dec 2004
Location: Denver
Posts: 6,559
IE8 only accepts .eot font files. To be truly cross browser compatible you need this declaration of files.

Code:
@font-face {
    font-family: 'SansLight';
    src: url('OpenSans-Light-webfont.eot');
    src: url('OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
         url('OpenSans-Light-webfont.woff') format('woff'),
         url('OpenSans-Light-webfont.ttf') format('truetype'),
         url('OpenSans-Light-webfont.svg#CabinRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
__________________

potter is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote