<?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: IE6 PNG Transparency CSS background-repeat Fix</title>
	<atom:link href="http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix</link>
	<description>...looking for more than eyes can see</description>
	<pubDate>Sat, 22 Nov 2008 06:52:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: A small collection of icons for you &#124; Glowleaf</title>
		<link>http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-3487</link>
		<dc:creator>A small collection of icons for you &#124; Glowleaf</dc:creator>
		<pubDate>Sat, 13 Sep 2008 16:26:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-3487</guid>
		<description>[...] Comment on IE6 PNG Transparency CSS background-repeat Fix by Ash [...]</description>
		<content:encoded><![CDATA[<p>[...] Comment on IE6 PNG Transparency CSS background-repeat Fix by Ash [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ash</title>
		<link>http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-3469</link>
		<dc:creator>Ash</dc:creator>
		<pubDate>Fri, 12 Sep 2008 21:17:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-3469</guid>
		<description>All you have to do to make the code above work is to replace the ’ with ' then your code will work. put examples below:

If you want to use PNG non repeat:
width:10px;
height:10px;
_width: 10px;
_height: 10px;
background: url(whatever.png) top left no-repeat transparent;
_background-image: none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='whatever.png',sizingMethod='scale');

if you want to use PNG with repeat:
display: block;
width: 10px;
background: url(whatever-repeat.png) top left repeat-y transparent;
_background-image: none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true', sizingMethod='scale', src='whatever-repeat.png');</description>
		<content:encoded><![CDATA[<p>All you have to do to make the code above work is to replace the ’ with &#8216; then your code will work. put examples below:</p>
<p>If you want to use PNG non repeat:<br />
width:10px;<br />
height:10px;<br />
_width: 10px;<br />
_height: 10px;<br />
background: url(whatever.png) top left no-repeat transparent;<br />
_background-image: none;<br />
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=&#8217;whatever.png&#8217;,sizingMethod=&#8217;scale&#8217;);</p>
<p>if you want to use PNG with repeat:<br />
display: block;<br />
width: 10px;<br />
background: url(whatever-repeat.png) top left repeat-y transparent;<br />
_background-image: none;<br />
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=&#8217;true&#8217;, sizingMethod=&#8217;scale&#8217;, src=&#8217;whatever-repeat.png&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom @ m360</title>
		<link>http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-3187</link>
		<dc:creator>Tom @ m360</dc:creator>
		<pubDate>Wed, 03 Sep 2008 16:28:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-3187</guid>
		<description>A great fix that worked for me in IE 6 which includes having PNG transparency in a background CSS image can be found at: www.twinhelix.com/css/iepngfix/

Cheers

Tom</description>
		<content:encoded><![CDATA[<p>A great fix that worked for me in IE 6 which includes having PNG transparency in a background CSS image can be found at: <a href="http://www.twinhelix.com/css/iepngfix/" rel="nofollow">http://www.twinhelix.com/css/iepngfix/</a></p>
<p>Cheers</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-2716</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Thu, 14 Aug 2008 09:47:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-2716</guid>
		<description>@Louis Lazaris

It doesn't matter where it is placed. 
Please supply some example where it was not ok

Cheers</description>
		<content:encoded><![CDATA[<p>@Louis Lazaris</p>
<p>It doesn&#8217;t matter where it is placed.<br />
Please supply some example where it was not ok</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Louis Lazaris</title>
		<link>http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-2712</link>
		<dc:creator>Louis Lazaris</dc:creator>
		<pubDate>Wed, 13 Aug 2008 15:54:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-2712</guid>
		<description>Thanks for this code (the "scale" method), it works great. I just wanted to make a note that this code only seems to work if it is placed in the HEAD of the HTML document. We originally tried using it in our external style sheet, but couldn't get it to work, and we were scratching our heads trying to figure it out, then we decided to make our code as close to your as possible, and it worked. Thanks again.</description>
		<content:encoded><![CDATA[<p>Thanks for this code (the &#8220;scale&#8221; method), it works great. I just wanted to make a note that this code only seems to work if it is placed in the HEAD of the HTML document. We originally tried using it in our external style sheet, but couldn&#8217;t get it to work, and we were scratching our heads trying to figure it out, then we decided to make our code as close to your as possible, and it worked. Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Razer</title>
		<link>http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-2568</link>
		<dc:creator>Razer</dc:creator>
		<pubDate>Sun, 03 Aug 2008 12:33:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-2568</guid>
		<description>Thanks Peter I am searching for the repeating and positining  PNG-24 Transparent Image. Do you have any idea about repeating the transparent  image that should be support with IE and Firefox.</description>
		<content:encoded><![CDATA[<p>Thanks Peter I am searching for the repeating and positining  PNG-24 Transparent Image. Do you have any idea about repeating the transparent  image that should be support with IE and Firefox.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elisa</title>
		<link>http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-2240</link>
		<dc:creator>Elisa</dc:creator>
		<pubDate>Wed, 16 Jul 2008 08:36:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-2240</guid>
		<description>Thank for this! I've been looking for something like this for a while.

@eligio, what do you mean misleading?! It does exactly that, enables you to repeat png's as background in IE6. Worked just fine with me.

If you want to use PNG non repeat:
width:10px;
height:10px;
_width: 10px;
_height: 10px;
background: url(whatever.png) top left no-repeat transparent;
_background-image: none; 
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='whatever.png',sizingMethod='scale');

if you want to use PNG with repeat:
display: block;
width: 10px;
background: url(whatever-repeat.png) top left repeat-y transparent;
_background-image: none; 
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true', sizingMethod='scale', src='whatever-repeat.png');

One repeats the PNG the other doesn't and both work in IE6.</description>
		<content:encoded><![CDATA[<p>Thank for this! I&#8217;ve been looking for something like this for a while.</p>
<p>@eligio, what do you mean misleading?! It does exactly that, enables you to repeat png&#8217;s as background in IE6. Worked just fine with me.</p>
<p>If you want to use PNG non repeat:<br />
width:10px;<br />
height:10px;<br />
_width: 10px;<br />
_height: 10px;<br />
background: url(whatever.png) top left no-repeat transparent;<br />
_background-image: none;<br />
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=&#8217;whatever.png&#8217;,sizingMethod=&#8217;scale&#8217;);</p>
<p>if you want to use PNG with repeat:<br />
display: block;<br />
width: 10px;<br />
background: url(whatever-repeat.png) top left repeat-y transparent;<br />
_background-image: none;<br />
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=&#8217;true&#8217;, sizingMethod=&#8217;scale&#8217;, src=&#8217;whatever-repeat.png&#8217;);</p>
<p>One repeats the PNG the other doesn&#8217;t and both work in IE6.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-1973</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Tue, 17 Jun 2008 09:42:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-1973</guid>
		<description>@e devlet what are you trying to say ?</description>
		<content:encoded><![CDATA[<p>@e devlet what are you trying to say ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: e devlet</title>
		<link>http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-1971</link>
		<dc:creator>e devlet</dc:creator>
		<pubDate>Tue, 17 Jun 2008 06:16:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-1971</guid>
		<description>css background examples , Properties , Attribute   - - css-lessons.ucoz.com/background-css-examples.htm</description>
		<content:encoded><![CDATA[<p>css background examples , Properties , Attribute   - - css-lessons.ucoz.com/background-css-examples.htm</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Internet Explorer 6 i&#231;in saydam PNG desteği &#187; Tekil Yazı &#187; Fatih Hayrioğlu'nun not defteri</title>
		<link>http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-1218</link>
		<dc:creator>Internet Explorer 6 i&#231;in saydam PNG desteği &#187; Tekil Yazı &#187; Fatih Hayrioğlu'nun not defteri</dc:creator>
		<pubDate>Mon, 28 Apr 2008 07:03:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix#comment-1218</guid>
		<description>[...] http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix" rel="nofollow">http://blog.creonfx.com/internet-explorer/ie6-png-transparency-css-background-repeat-fix</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
