<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Conflicting Z-Index in IE6</title>
	<atom:link href="http://www.last-child.com/conflicting-z-index-in-ie6/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.last-child.com/conflicting-z-index-in-ie6/</link>
	<description>CSS Toys for Professional Web Developers</description>
	<pubDate>Tue, 06 Jan 2009 07:33:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Robert J. Berger</title>
		<link>http://www.last-child.com/conflicting-z-index-in-ie6/#comment-30180</link>
		<dc:creator>Robert J. Berger</dc:creator>
		<pubDate>Tue, 09 Dec 2008 17:19:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.last-child.com/conflicting-z-index-in-ie6/#comment-30180</guid>
		<description>We ended up using the bgiframe jquery plugin (http://plugins.jquery.com/project/bgiframe). It implements the iframe "shield" technique in a library. I figure that making IE6 users have to have a bit more of a library download penalty (which isn't really all that much) so that I don't have to go crazy about IE6 bleedthru is worth it.</description>
		<content:encoded><![CDATA[<p>We ended up using the bgiframe jquery plugin (http://plugins.jquery.com/project/bgiframe). It implements the iframe &#8220;shield&#8221; technique in a library. I figure that making IE6 users have to have a bit more of a library download penalty (which isn&#8217;t really all that much) so that I don&#8217;t have to go crazy about IE6 bleedthru is worth it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Mellenger</title>
		<link>http://www.last-child.com/conflicting-z-index-in-ie6/#comment-30051</link>
		<dc:creator>Andrew Mellenger</dc:creator>
		<pubDate>Mon, 06 Oct 2008 03:33:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.last-child.com/conflicting-z-index-in-ie6/#comment-30051</guid>
		<description>I was having this z-index issue as well, but I have two menus with drop down lists, one that drops down on the other. similar to the nav menu on http://nymag.com/

If I set the secondary menu to z-index: -1 then the links didn't work anymore. I decided to use jquery to change the z-index of the second level menu as needed:


$('ul#primary-menu &#62; li').hover(
		function(){
			$('#secondary-menu').css("zIndex","-1");
		},
		function(){
			$('#secondary-menu').css("zIndex","5");
		}
	);
 

hope that helps someone.</description>
		<content:encoded><![CDATA[<p>I was having this z-index issue as well, but I have two menus with drop down lists, one that drops down on the other. similar to the nav menu on <a href="http://nymag.com/" rel="nofollow">http://nymag.com/</a></p>
<p>If I set the secondary menu to z-index: -1 then the links didn&#8217;t work anymore. I decided to use jquery to change the z-index of the second level menu as needed:</p>
<p>$(&#8217;ul#primary-menu &gt; li&#8217;).hover(<br />
		function(){<br />
			$(&#8217;#secondary-menu&#8217;).css(&#8221;zIndex&#8221;,&#8221;-1&#8243;);<br />
		},<br />
		function(){<br />
			$(&#8217;#secondary-menu&#8217;).css(&#8221;zIndex&#8221;,&#8221;5&#8243;);<br />
		}<br />
	);</p>
<p>hope that helps someone.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ljagy</title>
		<link>http://www.last-child.com/conflicting-z-index-in-ie6/#comment-30047</link>
		<dc:creator>ljagy</dc:creator>
		<pubDate>Thu, 25 Sep 2008 13:53:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.last-child.com/conflicting-z-index-in-ie6/#comment-30047</guid>
		<description>Beautiful! Z-index:-1 saved my day. Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Beautiful! Z-index:-1 saved my day. Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dwayne</title>
		<link>http://www.last-child.com/conflicting-z-index-in-ie6/#comment-30028</link>
		<dc:creator>Dwayne</dc:creator>
		<pubDate>Tue, 02 Sep 2008 13:47:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.last-child.com/conflicting-z-index-in-ie6/#comment-30028</guid>
		<description>Thanks!  The z-index:1 for the parent element worked (luckily the parent was #pagewrapper, so it didn't affect anything else...yet...</description>
		<content:encoded><![CDATA[<p>Thanks!  The z-index:1 for the parent element worked (luckily the parent was #pagewrapper, so it didn&#8217;t affect anything else&#8230;yet&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MMM Developer&#8217;s Blog &#187; IE6 z-index bug</title>
		<link>http://www.last-child.com/conflicting-z-index-in-ie6/#comment-30027</link>
		<dc:creator>MMM Developer&#8217;s Blog &#187; IE6 z-index bug</dc:creator>
		<pubDate>Tue, 02 Sep 2008 03:32:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.last-child.com/conflicting-z-index-in-ie6/#comment-30027</guid>
		<description>[...] This page had the solution. [...]</description>
		<content:encoded><![CDATA[<p>[...] This page had the solution. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michelle</title>
		<link>http://www.last-child.com/conflicting-z-index-in-ie6/#comment-30022</link>
		<dc:creator>Michelle</dc:creator>
		<pubDate>Tue, 26 Aug 2008 17:17:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.last-child.com/conflicting-z-index-in-ie6/#comment-30022</guid>
		<description>Thank you, thank you, for this help. I've been working for three days to fix two elements (one on top of the other), scouring the Internet, and the zindex -1 fix worked! Thanks for all your contributions.</description>
		<content:encoded><![CDATA[<p>Thank you, thank you, for this help. I&#8217;ve been working for three days to fix two elements (one on top of the other), scouring the Internet, and the zindex -1 fix worked! Thanks for all your contributions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Jankovic</title>
		<link>http://www.last-child.com/conflicting-z-index-in-ie6/#comment-29914</link>
		<dc:creator>Daniel Jankovic</dc:creator>
		<pubDate>Thu, 17 Jul 2008 12:26:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.last-child.com/conflicting-z-index-in-ie6/#comment-29914</guid>
		<description>Hello,

I just want to thank you for writing about this. I actually tried out Aleksandar's approach yesterday, but I probably did something wrong or was to nervous to think properly :)

Anyway, thank you for appearing first on my google search!

Best,
Dan</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I just want to thank you for writing about this. I actually tried out Aleksandar&#8217;s approach yesterday, but I probably did something wrong or was to nervous to think properly <img src='http://www.last-child.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Anyway, thank you for appearing first on my google search!</p>
<p>Best,<br />
Dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zach Inglis</title>
		<link>http://www.last-child.com/conflicting-z-index-in-ie6/#comment-29905</link>
		<dc:creator>Zach Inglis</dc:creator>
		<pubDate>Tue, 15 Jul 2008 13:55:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.last-child.com/conflicting-z-index-in-ie6/#comment-29905</guid>
		<description>I also had this problem. I fixed it by changing the z-index to be around the parent element. It does not like it if it is around a child element.</description>
		<content:encoded><![CDATA[<p>I also had this problem. I fixed it by changing the z-index to be around the parent element. It does not like it if it is around a child element.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blog &#124; martin edlund &#187; Blog Archive &#187; Yay!</title>
		<link>http://www.last-child.com/conflicting-z-index-in-ie6/#comment-28228</link>
		<dc:creator>blog &#124; martin edlund &#187; Blog Archive &#187; Yay!</dc:creator>
		<pubDate>Tue, 25 Dec 2007 13:47:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.last-child.com/conflicting-z-index-in-ie6/#comment-28228</guid>
		<description>[...] Efter extremt mycket om och men lyckades jag till slut få till det: min meny ser nu identisk ut i både Explorer 7 &#38; 6. 5.5 är inte riktigt lika lätt att fixa till, pga en avvikelse när man använder listor (ul). Ledsen 5.5-användare, men jag har inte tid att fixa detta. Sidan går dock att använda som vanligt, bara ddet att menyn ser lite annorlunda ut. Här är två bra länkar till er som stöter på samma problem som mig (med z-index och IE 6):Conflicting Z-Index in IE6IE z-index bug  [...]</description>
		<content:encoded><![CDATA[<p>[...] Efter extremt mycket om och men lyckades jag till slut få till det: min meny ser nu identisk ut i både Explorer 7 &amp; 6. 5.5 är inte riktigt lika lätt att fixa till, pga en avvikelse när man använder listor (ul). Ledsen 5.5-användare, men jag har inte tid att fixa detta. Sidan går dock att använda som vanligt, bara ddet att menyn ser lite annorlunda ut. Här är två bra länkar till er som stöter på samma problem som mig (med z-index och IE 6):Conflicting Z-Index in IE6IE z-index bug  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent</title>
		<link>http://www.last-child.com/conflicting-z-index-in-ie6/#comment-27797</link>
		<dc:creator>Laurent</dc:creator>
		<pubDate>Wed, 21 Nov 2007 10:05:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.last-child.com/conflicting-z-index-in-ie6/#comment-27797</guid>
		<description>Thanks a lot, it's crazy, but this z-index:-1; trick saved my work. :)</description>
		<content:encoded><![CDATA[<p>Thanks a lot, it&#8217;s crazy, but this z-index:-1; trick saved my work. <img src='http://www.last-child.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.775 seconds -->
