Shape 5

Joomla Templates => EZ Web Hosting - Club => : kkevents June 03, 2014, 12:52:08 PM



: IE8 Font Issues
: kkevents June 03, 2014, 12:52:08 PM
In IE8 the company that uses the site is still on IE8 and has a mandatory security setting to disable "font downloads". The H2 font is showing as really big. How would I work around this? Where can I put an IE 8 Conditional statement to use a different font for IE8 only?


: Re: IE8 Font Issues
: mikenicoll June 03, 2014, 08:19:01 PM
Hello,

This is more on the custom side of things but you can add a PHP statement targeted to IE8 like so:

<?php if ($browser == "ie8") { ?>
h2 {
font-family: arial !important;
}
<?php } ?>

-Mike


: Re: IE8 Font Issues
: kkevents June 04, 2014, 07:51:26 AM
Prefect thanks!


: Re: IE8 Font Issues
: mikenicoll June 05, 2014, 05:03:12 PM
NP

-Mike