View Single Post
  #7 (permalink)  
Old Nov 28th, 2007, 00:28
Stuart Stuart is offline
Highly Reputable Member
Join Date: Sep 2007
Age: 15
Posts: 717
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: CSS menu not working in IE6

You can also use a conditional comment for your <link>ed stylesheet. Like this:
HTML: Select all
<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" media="screen" href="ie6.css" />
<![endif]-->
This stylesheet will only be used by IE 6 and below :: lte means - less than or equal to

Hope that helps
Reply With Quote