<?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: Hate Internet Explorer? Take a stand against IE6 browser</title>
	<atom:link href="http://www.daobydesign.com/blog/2008/09/hate-internet-explorer-take-a-stand-against-ie6-browsers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.daobydesign.com/blog/tips/css-html/hate-internet-explorer-take-a-stand-against-ie6-browsers/</link>
	<description>Creative, Custom CMS web design services</description>
	<lastBuildDate>Sun, 05 Sep 2010 01:59:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Frank</title>
		<link>http://www.daobydesign.com/blog/tips/css-html/hate-internet-explorer-take-a-stand-against-ie6-browsers/#comment-7955</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Tue, 16 Feb 2010 08:07:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.daobydesign.com/blog/?p=78#comment-7955</guid>
		<description>Haha, thanks for sharing this, really nice!</description>
		<content:encoded><![CDATA[<p>Haha, thanks for sharing this, really nice!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.daobydesign.com/blog/tips/css-html/hate-internet-explorer-take-a-stand-against-ie6-browsers/#comment-7954</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Mon, 15 Feb 2010 20:45:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.daobydesign.com/blog/?p=78#comment-7954</guid>
		<description>Don&#039;t forget to change the path to your images. The code goes into the stylesheet. You will need a transparent GIF file. Do not put the [code] and [/code] in your stylesheet. They were meant to display this text as code, but didn&#039;t work as I thought. You can to my site and see it in action. This code works good in IE7 and IE8. IE6 might be another story. Sorry.</description>
		<content:encoded><![CDATA[<p>Don&#8217;t forget to change the path to your images. The code goes into the stylesheet. You will need a transparent GIF file. Do not put the [code] and [/code] in your stylesheet. They were meant to display this text as code, but didn&#8217;t work as I thought. You can to my site and see it in action. This code works good in IE7 and IE8. IE6 might be another story. Sorry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.daobydesign.com/blog/tips/css-html/hate-internet-explorer-take-a-stand-against-ie6-browsers/#comment-7952</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 15 Feb 2010 19:39:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.daobydesign.com/blog/?p=78#comment-7952</guid>
		<description>THIS did not work at all for me...</description>
		<content:encoded><![CDATA[<p>THIS did not work at all for me&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.daobydesign.com/blog/tips/css-html/hate-internet-explorer-take-a-stand-against-ie6-browsers/#comment-7930</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Mon, 08 Feb 2010 16:55:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.daobydesign.com/blog/?p=78#comment-7930</guid>
		<description>@Ralph

You can use the alpha transparency filter in your style sheet to fix your png problem in IE. Not sure if I can paste the style code here, but I will try:
[code]
* html img,

* html .png{

    

    behavior: expression((this.runtimeStyle.behavior=&quot;none&quot;)&amp;&amp;(this.pngSet?this.pngSet=true:(this.nodeName == &quot;IMG&quot; &amp;&amp; this.src.toLowerCase().indexOf(&#039;.png&#039;)&gt;-1?(this.runtimeStyle.backgroundImage = &quot;none&quot;,

        this.runtimeStyle.filter = &quot;progid:DXImageTransform.Microsoft.AlphaImageLoader(src=&#039;&quot; + this.src + &quot;&#039;, sizingMethod=&#039;image&#039;)&quot;,

        this.src = &quot;images/transparent.gif&quot;):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace(&#039;url(&quot;&#039;,&#039;&#039;).replace(&#039;&quot;)&#039;,&#039;&#039;),

        this.runtimeStyle.filter = &quot;progid:DXImageTransform.Microsoft.AlphaImageLoader(src=&#039;&quot; + this.origBg + &quot;&#039;, sizingMethod=&#039;crop&#039;)&quot;,

        this.runtimeStyle.backgroundImage = &quot;none&quot;)),this.pngSet=true)

    );

}
[/code]
Make sure to give your png images a position or they will not work as links.</description>
		<content:encoded><![CDATA[<p>@Ralph</p>
<p>You can use the alpha transparency filter in your style sheet to fix your png problem in IE. Not sure if I can paste the style code here, but I will try:<br />
[code]<br />
* html img,</p>
<p>* html .png{</p>
<p>    behavior: expression((this.runtimeStyle.behavior="none")&amp;&amp;(this.pngSet?this.pngSet=true:(this.nodeName == "IMG" &amp;&amp; this.src.toLowerCase().indexOf('.png')&gt;-1?(this.runtimeStyle.backgroundImage = "none",</p>
<p>        this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')",</p>
<p>        this.src = "images/transparent.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''),</p>
<p>        this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='crop')",</p>
<p>        this.runtimeStyle.backgroundImage = "none")),this.pngSet=true)</p>
<p>    );</p>
<p>}<br />
[/code]<br />
Make sure to give your png images a position or they will not work as links.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ralph</title>
		<link>http://www.daobydesign.com/blog/tips/css-html/hate-internet-explorer-take-a-stand-against-ie6-browsers/#comment-7234</link>
		<dc:creator>Ralph</dc:creator>
		<pubDate>Wed, 30 Sep 2009 09:13:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.daobydesign.com/blog/?p=78#comment-7234</guid>
		<description>OMG! I&#039;m working on a site for a client and I thought well lets check it in IE8. Result: Loads of script conflicts (such as PNG Alpha transparency in combination with jQuery opacity statements) and heaps of display problems. I&#039;ve tried to look for a png fix such as the ones for IE6 and came to the conclusion.... THERE IS NOT ONE!!!!!

AND NOW COMES IT!!!!.

I&#039;ve checked all the sites that I made over the last 2 years in IE8 and I was shocked to see that they all have major issues regarding usability, display and functionality.
After cursing for an hour or so and wishing Bill Fucking Gates everything what we don&#039;t want to have, I really don&#039;t know how I&#039;m going to explain my former clients that I need days and in some cases even, weeks, to solve all the issues and that they have to pay for me to do so while actually BILL FUCKING GATES have to pay me for that.

Seriously, I know that I as a web developer can&#039;t ignore Internet Explorer, because there are still too many end users stuck with the shitiest browser on earth, but deep in my Firefox, Opera, Safari, Chrome, etc, HEARTH... I WISH I COULD!</description>
		<content:encoded><![CDATA[<p>OMG! I&#8217;m working on a site for a client and I thought well lets check it in IE8. Result: Loads of script conflicts (such as PNG Alpha transparency in combination with jQuery opacity statements) and heaps of display problems. I&#8217;ve tried to look for a png fix such as the ones for IE6 and came to the conclusion&#8230;. THERE IS NOT ONE!!!!!</p>
<p>AND NOW COMES IT!!!!.</p>
<p>I&#8217;ve checked all the sites that I made over the last 2 years in IE8 and I was shocked to see that they all have major issues regarding usability, display and functionality.<br />
After cursing for an hour or so and wishing Bill Fucking Gates everything what we don&#8217;t want to have, I really don&#8217;t know how I&#8217;m going to explain my former clients that I need days and in some cases even, weeks, to solve all the issues and that they have to pay for me to do so while actually BILL FUCKING GATES have to pay me for that.</p>
<p>Seriously, I know that I as a web developer can&#8217;t ignore Internet Explorer, because there are still too many end users stuck with the shitiest browser on earth, but deep in my Firefox, Opera, Safari, Chrome, etc, HEARTH&#8230; I WISH I COULD!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Detect &#38; Redirect Script For Internet Explorer (IE) &#124; Dao By Design Blog</title>
		<link>http://www.daobydesign.com/blog/tips/css-html/hate-internet-explorer-take-a-stand-against-ie6-browsers/#comment-7123</link>
		<dc:creator>Detect &#38; Redirect Script For Internet Explorer (IE) &#124; Dao By Design Blog</dc:creator>
		<pubDate>Thu, 17 Sep 2009 03:18:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.daobydesign.com/blog/?p=78#comment-7123</guid>
		<description>[...] For anyone looking for the ability to detect and redirect based on IE version, you should check out this post. It uses conditional comments to detect IE versions and redirect [...]</description>
		<content:encoded><![CDATA[<p>[...] For anyone looking for the ability to detect and redirect based on IE version, you should check out this post. It uses conditional comments to detect IE versions and redirect [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elgin Stafford</title>
		<link>http://www.daobydesign.com/blog/tips/css-html/hate-internet-explorer-take-a-stand-against-ie6-browsers/#comment-6860</link>
		<dc:creator>Elgin Stafford</dc:creator>
		<pubDate>Tue, 04 Aug 2009 18:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.daobydesign.com/blog/?p=78#comment-6860</guid>
		<description>This is an interesting article DAO. Here is a document that we developed to help users take to their companies. It discusses &lt;a href=&quot;http://www.scribd.com/doc/17681961/Why-Your-Company-Should-Offer-an-Alternative-to-IE6&quot; rel=&quot;nofollow&quot;&gt;why businesses should offer their users an alternative to IE6&lt;/a&gt;.


http://mitto.com
Your Safe and Secure Online Password Manager</description>
		<content:encoded><![CDATA[<p>This is an interesting article DAO. Here is a document that we developed to help users take to their companies. It discusses <a href="http://www.scribd.com/doc/17681961/Why-Your-Company-Should-Offer-an-Alternative-to-IE6" rel="nofollow">why businesses should offer their users an alternative to IE6</a>.</p>
<p><a href="http://mitto.com" rel="nofollow">http://mitto.com</a><br />
Your Safe and Secure Online Password Manager</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Davy</title>
		<link>http://www.daobydesign.com/blog/tips/css-html/hate-internet-explorer-take-a-stand-against-ie6-browsers/#comment-6820</link>
		<dc:creator>Davy</dc:creator>
		<pubDate>Thu, 23 Jul 2009 19:07:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.daobydesign.com/blog/?p=78#comment-6820</guid>
		<description>Cool, Youtube takes place against IE6 And Web Agency too see here:
http://jerusalemstyle.com/blog/dropping-ie6-no-more-ie6-support-appeal-webmasters-revolution-20090714-38</description>
		<content:encoded><![CDATA[<p>Cool, Youtube takes place against IE6 And Web Agency too see here:<br />
<a href="http://jerusalemstyle.com/blog/dropping-ie6-no-more-ie6-support-appeal-webmasters-revolution-20090714-38" rel="nofollow">http://jerusalemstyle.com/blog/dropping-ie6-no-more-ie6-support-appeal-webmasters-revolution-20090714-38</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marco</title>
		<link>http://www.daobydesign.com/blog/tips/css-html/hate-internet-explorer-take-a-stand-against-ie6-browsers/#comment-6609</link>
		<dc:creator>marco</dc:creator>
		<pubDate>Thu, 23 Apr 2009 18:31:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.daobydesign.com/blog/?p=78#comment-6609</guid>
		<description>As a web developer I hate Internet Explorer (wish that it was never created) because working on how to make sites work on all browsers is a headache! Most of my works which is working perfectly on Firefox, Opera, Safari and Chrome was being rejected by the non-standards IE. If not for my job IE should have been long gone on my PC.</description>
		<content:encoded><![CDATA[<p>As a web developer I hate Internet Explorer (wish that it was never created) because working on how to make sites work on all browsers is a headache! Most of my works which is working perfectly on Firefox, Opera, Safari and Chrome was being rejected by the non-standards IE. If not for my job IE should have been long gone on my PC.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen</title>
		<link>http://www.daobydesign.com/blog/tips/css-html/hate-internet-explorer-take-a-stand-against-ie6-browsers/#comment-6313</link>
		<dc:creator>Stephen</dc:creator>
		<pubDate>Sat, 10 Jan 2009 03:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.daobydesign.com/blog/?p=78#comment-6313</guid>
		<description>Your cause is mine. I will spread the gospel.</description>
		<content:encoded><![CDATA[<p>Your cause is mine. I will spread the gospel.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
