<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Z-index Internet Explorer IE6</title>
	<atom:link href="http://www.gobdg.com/blog/2009/05/z-index-internet-explorer-ie6/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gobdg.com/blog/2009/05/z-index-internet-explorer-ie6/</link>
	<description>Web development, coffee, and abe froman.</description>
	<lastBuildDate>Thu, 08 Jul 2010 22:26:19 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Melissa</title>
		<link>http://www.gobdg.com/blog/2009/05/z-index-internet-explorer-ie6/comment-page-1/#comment-977</link>
		<dc:creator>Melissa</dc:creator>
		<pubDate>Fri, 11 Jun 2010 16:11:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.gobdg.com/blog/?p=233#comment-977</guid>
		<description>Ah! This solution worked for me. Thank you so much  - this is saving me a lot of headache. :) (and I mean the actual fix, not doing river rafting, haha.)</description>
		<content:encoded><![CDATA[<p>Ah! This solution worked for me. Thank you so much  &#8211; this is saving me a lot of headache. <img src='http://www.gobdg.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (and I mean the actual fix, not doing river rafting, haha.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Larry</title>
		<link>http://www.gobdg.com/blog/2009/05/z-index-internet-explorer-ie6/comment-page-1/#comment-967</link>
		<dc:creator>Larry</dc:creator>
		<pubDate>Mon, 24 May 2010 03:59:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.gobdg.com/blog/?p=233#comment-967</guid>
		<description>Agreed with Tyler, giving up web design and becoming a white water rafting tour guide resolved all ie bugs for me!</description>
		<content:encoded><![CDATA[<p>Agreed with Tyler, giving up web design and becoming a white water rafting tour guide resolved all ie bugs for me!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tyler</title>
		<link>http://www.gobdg.com/blog/2009/05/z-index-internet-explorer-ie6/comment-page-1/#comment-964</link>
		<dc:creator>Tyler</dc:creator>
		<pubDate>Mon, 10 May 2010 17:55:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.gobdg.com/blog/?p=233#comment-964</guid>
		<description>Thanks for that solution, becoming a white water rafting tour guide as resolved a lot of z-indexing issues for me, as well as other life problems. :-)</description>
		<content:encoded><![CDATA[<p>Thanks for that solution, becoming a white water rafting tour guide as resolved a lot of z-indexing issues for me, as well as other life problems. <img src='http://www.gobdg.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: muffin</title>
		<link>http://www.gobdg.com/blog/2009/05/z-index-internet-explorer-ie6/comment-page-1/#comment-895</link>
		<dc:creator>muffin</dc:creator>
		<pubDate>Wed, 31 Mar 2010 10:33:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.gobdg.com/blog/?p=233#comment-895</guid>
		<description>awesome, thanks. giving the parent a highter z-index worked for me too :-)</description>
		<content:encoded><![CDATA[<p>awesome, thanks. giving the parent a highter z-index worked for me too <img src='http://www.gobdg.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://www.gobdg.com/blog/2009/05/z-index-internet-explorer-ie6/comment-page-1/#comment-839</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Tue, 10 Nov 2009 09:57:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.gobdg.com/blog/?p=233#comment-839</guid>
		<description>Hi,
it&#039;s nice solution but not worked for me.
I have case with menu, under menu I have tabs. Relative z-index -1 make tabs unavailable.
Finally I did my solution with Jquery and relative position:
	jQuery().ready(function(){
	    $(&quot;.slidemenu&quot;).hover(    
	        function(e) {
	            $(&#039;#neg_position&#039;).css(&quot;z-index&quot;,&quot;-1&quot;).css(&quot;position&quot;,&quot;relative&quot;);
	        },
	        function() {
	            $(&#039;#neg_position&#039;).css(&quot;z-index&quot;,&quot;&quot;).css(&quot;position&quot;,&quot;&quot;);
	        }
	    ).mousemove(
	        function(e) {
	            $(&#039;#neg_position&#039;).css(&quot;z-index&quot;,&quot;-1&quot;).css(&quot;position&quot;,&quot;relative&quot;);
	        }
	    );            
	});

slidemenu is container of my menu,neg_position my tabs container

I hope it help to somebody.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
it&#8217;s nice solution but not worked for me.<br />
I have case with menu, under menu I have tabs. Relative z-index -1 make tabs unavailable.<br />
Finally I did my solution with Jquery and relative position:<br />
	jQuery().ready(function(){<br />
	    $(&#8220;.slidemenu&#8221;).hover(<br />
	        function(e) {<br />
	            $(&#8216;#neg_position&#8217;).css(&#8220;z-index&#8221;,&#8221;-1&#8243;).css(&#8220;position&#8221;,&#8221;relative&#8221;);<br />
	        },<br />
	        function() {<br />
	            $(&#8216;#neg_position&#8217;).css(&#8220;z-index&#8221;,&#8221;").css(&#8220;position&#8221;,&#8221;");<br />
	        }<br />
	    ).mousemove(<br />
	        function(e) {<br />
	            $(&#8216;#neg_position&#8217;).css(&#8220;z-index&#8221;,&#8221;-1&#8243;).css(&#8220;position&#8221;,&#8221;relative&#8221;);<br />
	        }<br />
	    );<br />
	});</p>
<p>slidemenu is container of my menu,neg_position my tabs container</p>
<p>I hope it help to somebody.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
