View Single Post
Old 04-03-2008, 10:21 PM   #6 (permalink)
dylanfm
The Wanderer
 
dylanfm's Avatar
 
Join Date: Jan 2008
Location: Australia
Posts: 14
Thanks: 1
dylanfm is on a distinguished road
Default

To deliver IE specific code, use IE conditionals.

For example:
Code:
<!--[if IE]>
	<link rel="stylesheet" href="..." type="text/css" media="screen, projection" charset="utf-8" />
<![endif]-->

<!--[if lte IE 6]>
	<link rel="stylesheet" href="..." type="text/css" media="screen, projection" charset="utf-8" />
<![endif]-->

<!--[if !IE]>
	<link rel="stylesheet" href="..." type="text/css" media="screen, projection" charset="utf-8" />
<!-- <![endif]-->
Send a message via ICQ to dylanfm
dylanfm is offline  
Reply With Quote