I know I saw a thread on this here back in the day but Im having trouble finding it... I want to call up a seperate sheet for those unfortunate users on IE.
| SitePoint Sponsor |

I know I saw a thread on this here back in the day but Im having trouble finding it... I want to call up a seperate sheet for those unfortunate users on IE.
<?php//Kyle Wolfeecho devBlog("My Dev Notes");


Hi,
You could simply use IE's conditional comments to call the stylesheet and no other browsers will get it. Only works for version 5 upwards though.
More info here:
http://youngpup.net/2004/condcomm
Paul
heck...beat me to it. i was just about to say "use conditionals" and point to
http://msdn.microsoft.com/workshop/a...omment_ovw.asp
Code:<link rel="stylesheet" type="text/css" href="general.css" /> <!--[if IE]> <link rel="stylesheet" type="text/css" href="ieonly.css" /> <![endif]-->
re·dux (adj.): brought back; returned. used postpositively
[latin : re-, re- + dux, leader; see duke.]
WaSP Accessibility Task Force Member
splintered.co.uk | photographia.co.uk | redux.deviantart.com
and double heck. i just followed the youngpup link, and his code is pretty much the same that i just cooked up. great minds...
re·dux (adj.): brought back; returned. used postpositively
[latin : re-, re- + dux, leader; see duke.]
WaSP Accessibility Task Force Member
splintered.co.uk | photographia.co.uk | redux.deviantart.com



heh, thanks guys...
<?php//Kyle Wolfeecho devBlog("My Dev Notes");
Bookmarks