<?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: ASP.NET 2.0 Drop Down Menu Control &#8211; White Background Fix</title>
	<atom:link href="http://www.goldmandesign.com/blog/tips/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.goldmandesign.com/blog/tips/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/</link>
	<description>Website Design and App Design Services</description>
	<lastBuildDate>Wed, 07 Jul 2010 16:10:41 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Chris Bywaters</title>
		<link>http://www.goldmandesign.com/blog/tips/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-153</link>
		<dc:creator>Chris Bywaters</dc:creator>
		<pubDate>Fri, 19 Oct 2007 15:20:58 +0000</pubDate>
		<guid isPermaLink="false">http://goldmandesign.com/blog/2006/06/24/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-153</guid>
		<description>I have to simply say thanks for this tid bit ...

I have been trying to figure out what was going on the ASP:MENU control for almost a day.</description>
		<content:encoded><![CDATA[<p>I have to simply say thanks for this tid bit &#8230;</p>
<p>I have been trying to figure out what was going on the ASP:MENU control for almost a day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Goldman</title>
		<link>http://www.goldmandesign.com/blog/tips/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-152</link>
		<dc:creator>Kevin Goldman</dc:creator>
		<pubDate>Wed, 04 Apr 2007 16:31:59 +0000</pubDate>
		<guid isPermaLink="false">http://goldmandesign.com/blog/2006/06/24/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-152</guid>
		<description>Metropolis12 - No Firefox does not support any of the Microsoft filters as far as I know.

In the ASP.net 2.0 rounded corner drop down menu issue I had above, Firefox did not render a white background, so there was no fix needed.</description>
		<content:encoded><![CDATA[<p>Metropolis12 &#8211; No Firefox does not support any of the Microsoft filters as far as I know.</p>
<p>In the ASP.net 2.0 rounded corner drop down menu issue I had above, Firefox did not render a white background, so there was no fix needed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Metropolis12</title>
		<link>http://www.goldmandesign.com/blog/tips/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-151</link>
		<dc:creator>Metropolis12</dc:creator>
		<pubDate>Wed, 04 Apr 2007 15:47:33 +0000</pubDate>
		<guid isPermaLink="false">http://goldmandesign.com/blog/2006/06/24/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-151</guid>
		<description>DXImageTransform.Microsoft.chroma

I am using this in IE .. does foxfire support this?</description>
		<content:encoded><![CDATA[<p>DXImageTransform.Microsoft.chroma</p>
<p>I am using this in IE .. does foxfire support this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Goldman</title>
		<link>http://www.goldmandesign.com/blog/tips/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-150</link>
		<dc:creator>Kevin Goldman</dc:creator>
		<pubDate>Mon, 26 Feb 2007 16:32:08 +0000</pubDate>
		<guid isPermaLink="false">http://goldmandesign.com/blog/2006/06/24/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-150</guid>
		<description>Thanks J for posting. Glad this helped. Below is the JS you used.


[code]&lt;code&gt;
&lt;script language=&quot;JavaScript&quot; type=&quot;text/JavaScript&quot;&gt; // timer to disable chroma filter in IE iFrame
	&lt;!--hide
		function chromaOff() {
			setTimeout(&quot;stopChroma()&quot;,3000);
		}
		function stopChroma() {
			document.getElementById(&#039;iframe_description&#039;).filters.item(&quot;DXImageTransform.Microsoft.Chroma&quot;).Enabled=false
			document.getElementById(&#039;iframe_content&#039;).filters.item(&quot;DXImageTransform.Microsoft.Chroma&quot;).Enabled=false
		}
	//--&gt;
&lt;/script&gt;
&lt;/code&gt;[/code]</description>
		<content:encoded><![CDATA[<p>Thanks J for posting. Glad this helped. Below is the JS you used.</p>
<p>[code]<code><br />
<script language="JavaScript" type="text/JavaScript"> // timer to disable chroma filter in IE iFrame
	<!--hide
		function chromaOff() {
			setTimeout("stopChroma()",3000);
		}
		function stopChroma() {
			document.getElementById('iframe_description').filters.item("DXImageTransform.Microsoft.Chroma").Enabled=false
			document.getElementById('iframe_content').filters.item("DXImageTransform.Microsoft.Chroma").Enabled=false
		}
	//-->
</script><br />
</code>[/code]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jh</title>
		<link>http://www.goldmandesign.com/blog/tips/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-149</link>
		<dc:creator>jh</dc:creator>
		<pubDate>Mon, 26 Feb 2007 04:49:50 +0000</pubDate>
		<guid isPermaLink="false">http://goldmandesign.com/blog/2006/06/24/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-149</guid>
		<description>Kevin,
Thank you for your response!  You have helped me solve an issue that I&#039;ve been working on for a long time!  I began digging around for some scripting and came up with the following which works great for this (removing the iFrame white flash in IE, just prior to the content loading into the iFrame .)  First is applying the chroma filter as you documented above to remove the flash (by instructing IE to filter out pure white, it&#039;s default bg color), the next step is to then disable the filter after a few seconds so that white elements that will then get loaded into the respective iFrame, won&#039;t have the white pixels removed.  Here is the javascript I used:

&lt;code&gt;
 // timer to disable chroma filter in IE iFrame


&lt;/code&gt;

Best Regards, and thank you for ending my frustrations with this!
-J</description>
		<content:encoded><![CDATA[<p>Kevin,<br />
Thank you for your response!  You have helped me solve an issue that I&#8217;ve been working on for a long time!  I began digging around for some scripting and came up with the following which works great for this (removing the iFrame white flash in IE, just prior to the content loading into the iFrame .)  First is applying the chroma filter as you documented above to remove the flash (by instructing IE to filter out pure white, it&#8217;s default bg color), the next step is to then disable the filter after a few seconds so that white elements that will then get loaded into the respective iFrame, won&#8217;t have the white pixels removed.  Here is the javascript I used:</p>
<p><code><br />
 // timer to disable chroma filter in IE iFrame</p>
<p></code></p>
<p>Best Regards, and thank you for ending my frustrations with this!<br />
-J</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Goldman</title>
		<link>http://www.goldmandesign.com/blog/tips/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-148</link>
		<dc:creator>Kevin Goldman</dc:creator>
		<pubDate>Sat, 24 Feb 2007 19:25:06 +0000</pubDate>
		<guid isPermaLink="false">http://goldmandesign.com/blog/2006/06/24/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-148</guid>
		<description>Hi J,

I&#039;m sure you can turn the filter on for say the first 1 or 2 seconds then turn it off with JavaScript. Unfortunately, I&#039;m not a Javascript whiz. Here are some reference links that may help on the filter side of things. Sorry I can&#039;t help more on this.

&lt;a href=&quot;http://msdn.microsoft.com/library/default.asp?url=/workshop/author/filter/filters_transitions_entry.asp&quot;&lt;/a rel=&quot;nofollow&quot;&gt;&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hi J,</p>
<p>I&#8217;m sure you can turn the filter on for say the first 1 or 2 seconds then turn it off with JavaScript. Unfortunately, I&#8217;m not a Javascript whiz. Here are some reference links that may help on the filter side of things. Sorry I can&#8217;t help more on this.</p>
<p><a href="http://msdn.microsoft.com/library/default.asp?url=/workshop/author/filter/filters_transitions_entry.asp"</a rel="nofollow"></a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jh</title>
		<link>http://www.goldmandesign.com/blog/tips/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-147</link>
		<dc:creator>jh</dc:creator>
		<pubDate>Fri, 23 Feb 2007 18:02:27 +0000</pubDate>
		<guid isPermaLink="false">http://goldmandesign.com/blog/2006/06/24/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-147</guid>
		<description>Thank you for this information.  I have a question though...  I was trying to apply this for a different reason...  I have 2 iFrames that I&#039;m loading content into for a site.  All browsers are fine, except for IE which flashes it&#039;s default bg color #ffffff before loading in the content for the iFrame.

Using your method above, it does remove the white &quot;flash&quot; I was getting in IE, but it also removes all other pixels that are #ffffff that get loaded into that iFrame from there on out.  Is there a way to have it filter out the white background initially and then either turn off once the page has loaded?  Or to tell it to only filter out the white background and ignore all other page elements?

Thanks for your time!
-J</description>
		<content:encoded><![CDATA[<p>Thank you for this information.  I have a question though&#8230;  I was trying to apply this for a different reason&#8230;  I have 2 iFrames that I&#8217;m loading content into for a site.  All browsers are fine, except for IE which flashes it&#8217;s default bg color #ffffff before loading in the content for the iFrame.</p>
<p>Using your method above, it does remove the white &#8220;flash&#8221; I was getting in IE, but it also removes all other pixels that are #ffffff that get loaded into that iFrame from there on out.  Is there a way to have it filter out the white background initially and then either turn off once the page has loaded?  Or to tell it to only filter out the white background and ignore all other page elements?</p>
<p>Thanks for your time!<br />
-J</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Goldman</title>
		<link>http://www.goldmandesign.com/blog/tips/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-146</link>
		<dc:creator>Kevin Goldman</dc:creator>
		<pubDate>Fri, 08 Dec 2006 19:32:30 +0000</pubDate>
		<guid isPermaLink="false">http://goldmandesign.com/blog/2006/06/24/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-146</guid>
		<description>Bhavana, if you want to send a link I can take a look. FYI - you&#039;ll never see the iFrame in your project, it is created as the page is rendered.

Another FYI - : ) - ASP.net&#039;s new &lt;a href=&quot;http://asp.net/cssadapters/&quot; rel=&quot;nofollow&quot;&gt;CSS Adapters&lt;/a&gt; remove all these nested tables and iframes from drop down menus and can be *much* easier to style.</description>
		<content:encoded><![CDATA[<p>Bhavana, if you want to send a link I can take a look. FYI &#8211; you&#8217;ll never see the iFrame in your project, it is created as the page is rendered.</p>
<p>Another FYI &#8211; : ) &#8211; ASP.net&#8217;s new <a href="http://asp.net/cssadapters/" rel="nofollow">CSS Adapters</a> remove all these nested tables and iframes from drop down menus and can be *much* easier to style.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bhavana</title>
		<link>http://www.goldmandesign.com/blog/tips/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-145</link>
		<dc:creator>bhavana</dc:creator>
		<pubDate>Fri, 08 Dec 2006 00:34:08 +0000</pubDate>
		<guid isPermaLink="false">http://goldmandesign.com/blog/2006/06/24/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-145</guid>
		<description>Hi

I am having the same problem of whitepsace in my menu .I used the code pasted on your site but it did not resolve the issue.My menu is not getting created inside an iframe but in a div tag .It is also being created programmatically in the CS file.

How do I solve this problem?Your help is highly appreciated.
Thanks a lot

Bhavana</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>I am having the same problem of whitepsace in my menu .I used the code pasted on your site but it did not resolve the issue.My menu is not getting created inside an iframe but in a div tag .It is also being created programmatically in the CS file.</p>
<p>How do I solve this problem?Your help is highly appreciated.<br />
Thanks a lot</p>
<p>Bhavana</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dirk</title>
		<link>http://www.goldmandesign.com/blog/tips/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-144</link>
		<dc:creator>Dirk</dc:creator>
		<pubDate>Thu, 13 Jul 2006 18:55:24 +0000</pubDate>
		<guid isPermaLink="false">http://goldmandesign.com/blog/2006/06/24/aspnet-drop-down-menu-control-white-rounded-corner-issue-fix/#comment-144</guid>
		<description>Hey Kevin,

thank you for the quick reply.

I will give it a try and let you know what made.

- Dirk</description>
		<content:encoded><![CDATA[<p>Hey Kevin,</p>
<p>thank you for the quick reply.</p>
<p>I will give it a try and let you know what made.</p>
<p>- Dirk</p>
]]></content:encoded>
	</item>
</channel>
</rss>
