<?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: A fix for Suckerfish dropdowns in IE 7</title>
	<atom:link href="http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/</link>
	<description>Web stuff. Mostly.</description>
	<lastBuildDate>Wed, 22 Feb 2012 07:02:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Kyndal</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-4360</link>
		<dc:creator>Kyndal</dc:creator>
		<pubDate>Wed, 22 Feb 2012 07:02:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-4360</guid>
		<description>I have tried and tried to get this to work. I have spent at least 10 hours searching all over the internet and NOTHING is working :(  I have tried every fix I&#039;ve found to no avail. But -- mine isn&#039;t a &#039;rollover&#039; sticky. Mine just appears on the page on load and won&#039;t go away. You don&#039;t even have to rollover it for it to appear!! I am testing in IE8. Any help at all would be much appreciated! 

Here is the unmodified IE Nav Code:

/* IE NAV */

#searchform {margin:0;padding:0;height:1%;}
#nav ul li.enhanced a.arrow { float: none;}
#nav ul li ul, #searchform #s { left:0;top:0}
.sf-menu ul { top: 29px !important; }
.sf-menu ul ul { top: 0 !important; }
#nav li:hover
{position: static;}

And the regular Superfish Code:

/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
	font-size:      1em;
	text-align: left;
}
.sf-menu {
	line-height:	1.0;
}
.sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			10em; /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
	width:			100%;
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 &#039;sticky bug&#039; */
height: 1%;
}
.sf-menu li {
	float:			left;
	position:		relative;
}
.sf-menu li.right {float:right;}
.sf-menu a {
	display:		block;
	position:		relative;
}

.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			0;
	top:			2.6em; /* match top ul list item height */
	z-index:		99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.sf-menu {
	margin-bottom:	1em;
    font-size:11px;
    background:#000;
    width:auto;
    height:30px
}
.sf-menu a {
	padding: 		9px;
	text-decoration:none;
}

.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#fff;
}
.sf-menu li {
	background:		#000;
	margin-right:   2em;
	
}
.sf-menu li.right {
	margin-right:   0;
}
.sf-menu li li {
	background:		#000;
}
.sf-menu li li li {
	background:		#000;
	
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
	background:		#1a1a1a;
	outline:		0;
}

/*** arrows **/
.sf-menu a.sf-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			1em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url(&#039;img/arrows-ffffff.png&#039;) no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a &gt; .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.9em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus &gt; .sf-sub-indicator,
a:hover &gt; .sf-sub-indicator,
a:active &gt; .sf-sub-indicator,
li:hover &gt; a &gt; .sf-sub-indicator,
li.sfHover &gt; a &gt; .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }
.sf-menu ul a &gt; .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus &gt; .sf-sub-indicator,
.sf-menu ul a:hover &gt; .sf-sub-indicator,
.sf-menu ul a:active &gt; .sf-sub-indicator,
.sf-menu ul li:hover &gt; a &gt; .sf-sub-indicator,
.sf-menu ul li.sfHover &gt; a &gt; .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background:	url(&#039;img/shadow.png&#039;) no-repeat bottom right;
	padding: 0 8px 9px 0;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}</description>
		<content:encoded><![CDATA[<p>I have tried and tried to get this to work. I have spent at least 10 hours searching all over the internet and NOTHING is working <img src='http://www.builtfromsource.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   I have tried every fix I&#8217;ve found to no avail. But &#8212; mine isn&#8217;t a &#8216;rollover&#8217; sticky. Mine just appears on the page on load and won&#8217;t go away. You don&#8217;t even have to rollover it for it to appear!! I am testing in IE8. Any help at all would be much appreciated! </p>
<p>Here is the unmodified IE Nav Code:</p>
<p>/* IE NAV */</p>
<p>#searchform {margin:0;padding:0;height:1%;}<br />
#nav ul li.enhanced a.arrow { float: none;}<br />
#nav ul li ul, #searchform #s { left:0;top:0}<br />
.sf-menu ul { top: 29px !important; }<br />
.sf-menu ul ul { top: 0 !important; }<br />
#nav li:hover<br />
{position: static;}</p>
<p>And the regular Superfish Code:</p>
<p>/*** ESSENTIAL STYLES ***/<br />
.sf-menu, .sf-menu * {<br />
	margin:			0;<br />
	padding:		0;<br />
	list-style:		none;<br />
	font-size:      1em;<br />
	text-align: left;<br />
}<br />
.sf-menu {<br />
	line-height:	1.0;<br />
}<br />
.sf-menu ul {<br />
	position:		absolute;<br />
	top:			-999em;<br />
	width:			10em; /* left offset of submenus need to match (see below) */<br />
}<br />
.sf-menu ul li {<br />
	width:			100%;<br />
}<br />
.sf-menu li:hover {<br />
	visibility:		inherit; /* fixes IE7 &#8216;sticky bug&#8217; */<br />
height: 1%;<br />
}<br />
.sf-menu li {<br />
	float:			left;<br />
	position:		relative;<br />
}<br />
.sf-menu li.right {float:right;}<br />
.sf-menu a {<br />
	display:		block;<br />
	position:		relative;<br />
}</p>
<p>.sf-menu li:hover ul,<br />
.sf-menu li.sfHover ul {<br />
	left:			0;<br />
	top:			2.6em; /* match top ul list item height */<br />
	z-index:		99;<br />
}<br />
ul.sf-menu li:hover li ul,<br />
ul.sf-menu li.sfHover li ul {<br />
	top:			-999em;<br />
}<br />
ul.sf-menu li li:hover ul,<br />
ul.sf-menu li li.sfHover ul {<br />
	left:			10em; /* match ul width */<br />
	top:			0;<br />
}<br />
ul.sf-menu li li:hover li ul,<br />
ul.sf-menu li li.sfHover li ul {<br />
	top:			-999em;<br />
}<br />
ul.sf-menu li li li:hover ul,<br />
ul.sf-menu li li li.sfHover ul {<br />
	left:			10em; /* match ul width */<br />
	top:			0;<br />
}</p>
<p>/*** DEMO SKIN ***/<br />
.sf-menu {<br />
	margin-bottom:	1em;<br />
    font-size:11px;<br />
    background:#000;<br />
    width:auto;<br />
    height:30px<br />
}<br />
.sf-menu a {<br />
	padding: 		9px;<br />
	text-decoration:none;<br />
}</p>
<p>.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/<br />
	color:			#fff;<br />
}<br />
.sf-menu li {<br />
	background:		#000;<br />
	margin-right:   2em;</p>
<p>}<br />
.sf-menu li.right {<br />
	margin-right:   0;<br />
}<br />
.sf-menu li li {<br />
	background:		#000;<br />
}<br />
.sf-menu li li li {<br />
	background:		#000;</p>
<p>}<br />
.sf-menu li:hover, .sf-menu li.sfHover,<br />
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {<br />
	background:		#1a1a1a;<br />
	outline:		0;<br />
}</p>
<p>/*** arrows **/<br />
.sf-menu a.sf-with-ul {<br />
	padding-right: 	2.25em;<br />
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */<br />
}<br />
.sf-sub-indicator {<br />
	position:		absolute;<br />
	display:		block;<br />
	right:			.75em;<br />
	top:			1em; /* IE6 only */<br />
	width:			10px;<br />
	height:			10px;<br />
	text-indent: 	-999em;<br />
	overflow:		hidden;<br />
	background:		url(&#8216;img/arrows-ffffff.png&#8217;) no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */<br />
}<br />
a &gt; .sf-sub-indicator {  /* give all except IE6 the correct values */<br />
	top:			.9em;<br />
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/<br />
}<br />
/* apply hovers to modern browsers */<br />
a:focus &gt; .sf-sub-indicator,<br />
a:hover &gt; .sf-sub-indicator,<br />
a:active &gt; .sf-sub-indicator,<br />
li:hover &gt; a &gt; .sf-sub-indicator,<br />
li.sfHover &gt; a &gt; .sf-sub-indicator {<br />
	background-position: -10px -100px; /* arrow hovers for modern browsers*/<br />
}</p>
<p>/* point right for anchors in subs */<br />
.sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }<br />
.sf-menu ul a &gt; .sf-sub-indicator { background-position:  0 0; }<br />
/* apply hovers to modern browsers */<br />
.sf-menu ul a:focus &gt; .sf-sub-indicator,<br />
.sf-menu ul a:hover &gt; .sf-sub-indicator,<br />
.sf-menu ul a:active &gt; .sf-sub-indicator,<br />
.sf-menu ul li:hover &gt; a &gt; .sf-sub-indicator,<br />
.sf-menu ul li.sfHover &gt; a &gt; .sf-sub-indicator {<br />
	background-position: -10px 0; /* arrow hovers for modern browsers*/<br />
}</p>
<p>/*** shadows for all but IE6 ***/<br />
.sf-shadow ul {<br />
	background:	url(&#8216;img/shadow.png&#8217;) no-repeat bottom right;<br />
	padding: 0 8px 9px 0;<br />
	-moz-border-radius-bottomleft: 17px;<br />
	-moz-border-radius-topright: 17px;<br />
	-webkit-border-top-right-radius: 17px;<br />
	-webkit-border-bottom-left-radius: 17px;<br />
}<br />
.sf-shadow ul.sf-shadow-off {<br />
	background: transparent;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bart Clarkson</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-4341</link>
		<dc:creator>Bart Clarkson</dc:creator>
		<pubDate>Tue, 25 Oct 2011 16:59:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-4341</guid>
		<description>I got hung up on some redraw problem in IE 8.  I switched out the js with a jQuery version.  If you&#039;re already loading jQuery, maybe this&#039;ll help you.  Also useful in avoiding an error when the navigation doesn&#039;t appear on all your pages.



$(function(){
		var isIE = /msie/i.test(navigator.userAgent) &amp;&amp; !window.opera;
		if (isIE) {
			$(&quot;nav li&quot;).each(function(){
				$(this).hover(function(){
					$(this).addClass(&quot;sfhover&quot;);
				},
				function(){
					$(this).removeClass(&quot;sfhover&quot;);				
				});
			});		
		}
	});
</description>
		<content:encoded><![CDATA[<p>I got hung up on some redraw problem in IE 8.  I switched out the js with a jQuery version.  If you&#8217;re already loading jQuery, maybe this&#8217;ll help you.  Also useful in avoiding an error when the navigation doesn&#8217;t appear on all your pages.</p>
<p>$(function(){<br />
		var isIE = /msie/i.test(navigator.userAgent) &amp;&amp; !window.opera;<br />
		if (isIE) {<br />
			$(&#8220;nav li&#8221;).each(function(){<br />
				$(this).hover(function(){<br />
					$(this).addClass(&#8220;sfhover&#8221;);<br />
				},<br />
				function(){<br />
					$(this).removeClass(&#8220;sfhover&#8221;);<br />
				});<br />
			});<br />
		}<br />
	});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-4339</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Thu, 13 Oct 2011 15:00:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-4339</guid>
		<description>Thanks man, you saved my life.</description>
		<content:encoded><![CDATA[<p>Thanks man, you saved my life.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: webmaster</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-4338</link>
		<dc:creator>webmaster</dc:creator>
		<pubDate>Thu, 13 Oct 2011 10:43:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-4338</guid>
		<description>Thanks it&#039;s work for me...</description>
		<content:encoded><![CDATA[<p>Thanks it&#8217;s work for me&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dorian</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-4299</link>
		<dc:creator>Dorian</dc:creator>
		<pubDate>Wed, 25 May 2011 00:40:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-4299</guid>
		<description>I may actually love you for posting this fix. Worked in my situation. :)</description>
		<content:encoded><![CDATA[<p>I may actually love you for posting this fix. Worked in my situation. <img src='http://www.builtfromsource.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A fix for 2nd Level Sons of Suckerfish dropdowns in IE 7 Compatibility Problem &#124; Technology And Business Blog</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-4297</link>
		<dc:creator>A fix for 2nd Level Sons of Suckerfish dropdowns in IE 7 Compatibility Problem &#124; Technology And Business Blog</dc:creator>
		<pubDate>Sat, 07 May 2011 19:21:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-4297</guid>
		<description>[...] browser mode or document mode. I had the same problem with another website and thought I found the solution by Matt of Built From Source although the fix was not working for a 2nd level drop down. What happened was when I initial hover [...]</description>
		<content:encoded><![CDATA[<p>[...] browser mode or document mode. I had the same problem with another website and thought I found the solution by Matt of Built From Source although the fix was not working for a 2nd level drop down. What happened was when I initial hover [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pam</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-4274</link>
		<dc:creator>Pam</dc:creator>
		<pubDate>Wed, 09 Feb 2011 21:28:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-4274</guid>
		<description>Thank you, Thank You, Thank You</description>
		<content:encoded><![CDATA[<p>Thank you, Thank You, Thank You</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tom-a-spol-sro</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-4102</link>
		<dc:creator>tom-a-spol-sro</dc:creator>
		<pubDate>Wed, 26 Jan 2011 10:03:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-4102</guid>
		<description>Man, thank you so much, I love you!!! I&#039;ve been torturing myself for hours and didn&#039;t know it is THAT simple :) Wondering why it&#039;s not written on suckerfish website. At least I didn&#039;t notice it...

Thanks a lot, really!</description>
		<content:encoded><![CDATA[<p>Man, thank you so much, I love you!!! I&#8217;ve been torturing myself for hours and didn&#8217;t know it is THAT simple <img src='http://www.builtfromsource.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Wondering why it&#8217;s not written on suckerfish website. At least I didn&#8217;t notice it&#8230;</p>
<p>Thanks a lot, really!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-3897</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Fri, 14 Jan 2011 22:09:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-3897</guid>
		<description>Amazing!! Thank you.</description>
		<content:encoded><![CDATA[<p>Amazing!! Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michelle</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-3840</link>
		<dc:creator>Michelle</dc:creator>
		<pubDate>Tue, 11 Jan 2011 20:34:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-3840</guid>
		<description>Thank you, thank you, this worked perfectly for me also!</description>
		<content:encoded><![CDATA[<p>Thank you, thank you, this worked perfectly for me also!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-3354</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Wed, 24 Nov 2010 15:14:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-3354</guid>
		<description>Thanks, this worked for me!

RealWaffle: Trying removing any position:relative you have on any containers that house your UL, that should do the trick.</description>
		<content:encoded><![CDATA[<p>Thanks, this worked for me!</p>
<p>RealWaffle: Trying removing any position:relative you have on any containers that house your UL, that should do the trick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: realwaffle</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-3216</link>
		<dc:creator>realwaffle</dc:creator>
		<pubDate>Sat, 06 Nov 2010 22:54:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-3216</guid>
		<description>My drop down menu works perfectly in Firefox, but in IE the drop down menu goes behind my posts. I&#039;ve added all the recommendations in this post and still can&#039;t figured out what else I&#039;m supposed to do. 

Here&#039;s my blog 

http://ddmguide.blogspot.com/</description>
		<content:encoded><![CDATA[<p>My drop down menu works perfectly in Firefox, but in IE the drop down menu goes behind my posts. I&#8217;ve added all the recommendations in this post and still can&#8217;t figured out what else I&#8217;m supposed to do. </p>
<p>Here&#8217;s my blog </p>
<p><a href="http://ddmguide.blogspot.com/" rel="nofollow">http://ddmguide.blogspot.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Polly</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-3069</link>
		<dc:creator>Polly</dc:creator>
		<pubDate>Fri, 24 Sep 2010 08:56:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-3069</guid>
		<description>Thanks for that it really works...</description>
		<content:encoded><![CDATA[<p>Thanks for that it really works&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DesignMethis</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-3066</link>
		<dc:creator>DesignMethis</dc:creator>
		<pubDate>Thu, 02 Sep 2010 15:23:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-3066</guid>
		<description>This is what did it for me:

[cc lang=&quot;css&quot;]li:hover{visibility:visible}[/cc]</description>
		<content:encoded><![CDATA[<p>This is what did it for me:</p>
<div class="codecolorer-container css blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">li<span style="color: #3333ff;">:hover</span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">visibility</span><span style="color: #00AA00;">:</span><span style="color: #993333;">visible</span><span style="color: #00AA00;">&#125;</span></div></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fix for Suckerfish Dropdowns in IE 7 &#8212; Leslie Franke</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-3056</link>
		<dc:creator>Fix for Suckerfish Dropdowns in IE 7 &#8212; Leslie Franke</dc:creator>
		<pubDate>Fri, 04 Jun 2010 02:30:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-3056</guid>
		<description>[...] dropdowns, the menus stick in place on the screen. Fortunately, &#8216;Built from Source&#8217; has posted a simple solution to this [...]</description>
		<content:encoded><![CDATA[<p>[...] dropdowns, the menus stick in place on the screen. Fortunately, &#8216;Built from Source&#8217; has posted a simple solution to this [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor James</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-3052</link>
		<dc:creator>Trevor James</dc:creator>
		<pubDate>Tue, 04 May 2010 20:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-3052</guid>
		<description>Great fix!  Thanks for this.  I used it to fix a suckerfish issue on one of my client&#039;s sites.  So simple but so accurate.

-Trevor</description>
		<content:encoded><![CDATA[<p>Great fix!  Thanks for this.  I used it to fix a suckerfish issue on one of my client&#8217;s sites.  So simple but so accurate.</p>
<p>-Trevor</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kotaro</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-3045</link>
		<dc:creator>Kotaro</dc:creator>
		<pubDate>Wed, 03 Mar 2010 06:16:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-3045</guid>
		<description>Thanks very much indeed!!! The solution posted gracefully fixed the problem that was facing me. In my case, the suckerfish was working alright until I triggered other Javascript Events to show/hide HTML elements. After trigger other Javascript Events, if I moved the mouse over and out of the suckerfish, the fish sort of got confused and remained out of the water tank. 

I spent loads of time to find a fix, and as soon as I found your post, the problem was solved. I am now felt great and sure that I can have a nice sleep tonight.

Many thanks again!</description>
		<content:encoded><![CDATA[<p>Thanks very much indeed!!! The solution posted gracefully fixed the problem that was facing me. In my case, the suckerfish was working alright until I triggered other Javascript Events to show/hide HTML elements. After trigger other Javascript Events, if I moved the mouse over and out of the suckerfish, the fish sort of got confused and remained out of the water tank. </p>
<p>I spent loads of time to find a fix, and as soon as I found your post, the problem was solved. I am now felt great and sure that I can have a nice sleep tonight.</p>
<p>Many thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daniel</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-3042</link>
		<dc:creator>daniel</dc:creator>
		<pubDate>Mon, 14 Dec 2009 21:18:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-3042</guid>
		<description>I&#039;ve been having a similar issue, which i how I found this website. Currently, this also occurs in Firefox3.5.5 and Safari4.0.4.

When I click on a menu item in the dropdown of the suckerfish menu, then click the back-button on the browser window, the suckerfish dropdown is still open/hanging down.

Any suggestions? Thanks!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been having a similar issue, which i how I found this website. Currently, this also occurs in Firefox3.5.5 and Safari4.0.4.</p>
<p>When I click on a menu item in the dropdown of the suckerfish menu, then click the back-button on the browser window, the suckerfish dropdown is still open/hanging down.</p>
<p>Any suggestions? Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-3039</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Thu, 03 Dec 2009 17:59:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-3039</guid>
		<description>You are my god.  ie7 would leave the text of my drop down stuck while the background would disappear.

Thank you!  Works great in IE7, IE8, Firefox 3.x, Safari.</description>
		<content:encoded><![CDATA[<p>You are my god.  ie7 would leave the text of my drop down stuck while the background would disappear.</p>
<p>Thank you!  Works great in IE7, IE8, Firefox 3.x, Safari.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anil</title>
		<link>http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/#comment-3032</link>
		<dc:creator>anil</dc:creator>
		<pubDate>Tue, 25 Aug 2009 11:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.builtfromsource.com/?p=3#comment-3032</guid>
		<description>HI,
i m stuck in extended menu in joomla using bolt as template.
Warning: array_keys() [function.array-keys]: The first argument should be an array in /var/www/production/atelier/plugins/exmenu/bot_exmenu_source_sql_query.php on line 42

Warning: Invalid argument supplied for foreach() in /var/www/production/atelier/plugins/exmenu/bot_exmenu_source_sql_query.php on line 42

Notice: exmenu: no plugin found for the name &quot;Extended Menu Source - SQL Query&quot; in /var/www/production/atelier/modules/mod_exmenu-j15/exmenu/loader/plugin.menuloader.class.php on line 41
Atelier des cigognes
 
Please help !</description>
		<content:encoded><![CDATA[<p>HI,<br />
i m stuck in extended menu in joomla using bolt as template.<br />
Warning: array_keys() [function.array-keys]: The first argument should be an array in /var/www/production/atelier/plugins/exmenu/bot_exmenu_source_sql_query.php on line 42</p>
<p>Warning: Invalid argument supplied for foreach() in /var/www/production/atelier/plugins/exmenu/bot_exmenu_source_sql_query.php on line 42</p>
<p>Notice: exmenu: no plugin found for the name &#8220;Extended Menu Source &#8211; SQL Query&#8221; in /var/www/production/atelier/modules/mod_exmenu-j15/exmenu/loader/plugin.menuloader.class.php on line 41<br />
Atelier des cigognes</p>
<p>Please help !</p>
]]></content:encoded>
	</item>
</channel>
</rss>

