Quote:
Originally Posted by HMBeaty
Try this..... create a plugin with the hook location style_fetch and add this code into it
PHP Code:
if (is_browser('ie'))
{
$styleid = x;
}
And obviously change the x to the styleid that you want to restrict to IE 
|
Works perfectly, thank you!

If I wanted to default mobile browsers to my mobile style, would I be able to use this like
PHP Code:
if (is_browser('ie'))
{
$styleid = x;
}
if (is_browser('mobile useragent string here'))
{
$styleid = x;
}
or would I have to make a second plugin?
It's not a necessity but it'd be really handy!