font size differences in ie9 - Joomla! Forum - community, help and support
not sure if right forum issue, i've been having problems ie9 not reading custom fonts. @ all.
here's have in stylesheet (which may add, every other browser reads font fine):
the website www.mainstreettower.com
i referring navigation menu.
anyone have input, or have done solve this? code above *should* make work. doesnt.
i'm going note hate internet explorer passion.
here's have in stylesheet (which may add, every other browser reads font fine):
code: select all
@font-face {
font-family: 'oswaldbook';
src: url('../fonts/oswald-light-webfont.eot') !important; /* ie9 */
src: url('../fonts/oswald-light-webfont.eot') format('embedded-opentype'), /* ie6-ie8 */
url('../fonts/oswald-light-webfont.woff') format('woff'), /* modern browsers */
url('../fonts/oswald-light-webfont.ttf') format('truetype'), /* safari, android, ios */
url('../fonts/oswald-light-webfont.svg#oswaldlight') format('svg'); /* legacy ios */
font-weight: normal; font-style: normal;
}the website www.mainstreettower.com
i referring navigation menu.
anyone have input, or have done solve this? code above *should* make work. doesnt.
i'm going note hate internet explorer passion.
figured out. code used:
and had put font files in same folder css file
code: select all
@font-face {
font-family: 'oswaldbook';
src: url('oswald-regular-webfont.eot');
src: url('oswald-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('oswald-regular-webfont.woff') format('woff'),
url('oswald-regular-webfont.ttf') format('truetype'),
url('oswald-regular-webfont.svg#oswaldbook') format('svg');
font-weight: normal;
font-style: normal;
}
and had put font files in same folder css file
Comments
Post a Comment