<?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: Incremental Improvement</title>
	<atom:link href="http://www.caperet.com/2005/09/incremental-improvement/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.caperet.com/2005/09/incremental-improvement/</link>
	<description>An eclectic mix of technology, news comment, and personal notes.</description>
	<lastBuildDate>Thu, 02 Feb 2012 20:55:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Ensellitis</title>
		<link>http://www.caperet.com/2005/09/incremental-improvement/comment-page-1/#comment-92</link>
		<dc:creator>Ensellitis</dc:creator>
		<pubDate>Sat, 24 Sep 2005 19:31:20 +0000</pubDate>
		<guid isPermaLink="false">http://fruey.free.fr/wordpress/?p=71#comment-92</guid>
		<description>Problem with this is that it also makes the text opacities change and some elements.  A good fix for that is to place the elements inside of another div or paragraph and give them another class and give them 100% opacity.

[p class=&quot;noopacity&quot;]text, images, or whatever[/p]

.noopacity {
background: transparent;
filter:alpha(opacity=100);
-moz-opacity:1.0;
opacity: 1.0;
}

If you ever wanted it to be valid CSS, you could also make a small gif background that is 2 by 2 pixels like this:
X0
0X
Where X is white and 0 is transparent and set that as the background.

Great fix. It makes reading the sidebar alot easier =)</description>
		<content:encoded><![CDATA[<p>Problem with this is that it also makes the text opacities change and some elements.  A good fix for that is to place the elements inside of another div or paragraph and give them another class and give them 100% opacity.</p>
<p>[p class="noopacity"]text, images, or whatever[/p]</p>
<p>.noopacity {<br />
background: transparent;<br />
filter:alpha(opacity=100);<br />
-moz-opacity:1.0;<br />
opacity: 1.0;<br />
}</p>
<p>If you ever wanted it to be valid CSS, you could also make a small gif background that is 2 by 2 pixels like this:<br />
X0<br />
0X<br />
Where X is white and 0 is transparent and set that as the background.</p>
<p>Great fix. It makes reading the sidebar alot easier =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://www.caperet.com/2005/09/incremental-improvement/comment-page-1/#comment-91</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Fri, 23 Sep 2005 12:10:19 +0000</pubDate>
		<guid isPermaLink="false">http://fruey.free.fr/wordpress/?p=71#comment-91</guid>
		<description>Hi Carrie,

I&#039;ve never looked at your page in IE. I&#039;ll have a look later on if I get time, I think I&#039;ll probably be able to solve this question.

The model of margins and padding (referred to as the &quot;CSS box model&quot;) in IE and Firefox is different, so you have to hack stuff to make different values available to each browser...

-Fruey</description>
		<content:encoded><![CDATA[<p>Hi Carrie,</p>
<p>I&#8217;ve never looked at your page in IE. I&#8217;ll have a look later on if I get time, I think I&#8217;ll probably be able to solve this question.</p>
<p>The model of margins and padding (referred to as the &#8220;CSS box model&#8221;) in IE and Firefox is different, so you have to hack stuff to make different values available to each browser&#8230;</p>
<p>-Fruey</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carrie</title>
		<link>http://www.caperet.com/2005/09/incremental-improvement/comment-page-1/#comment-90</link>
		<dc:creator>carrie</dc:creator>
		<pubDate>Fri, 23 Sep 2005 09:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://fruey.free.fr/wordpress/?p=71#comment-90</guid>
		<description>wow! ..I&#039;m thinking of all the background images I could use now that I&#039;ve found this handy little tip of yours! I&#039;m an html/css amateur (as is evident on my page :p) and if you&#039;ve ever viewed my page in IE, you&#039;ll see my borders dont quite fit my sidebar and main. I goofed around with my css and hid some padding values which made it look better in firefox, but its not right. if you have any suggestions for me, I&#039;d be very appreciative :)</description>
		<content:encoded><![CDATA[<p>wow! ..I&#8217;m thinking of all the background images I could use now that I&#8217;ve found this handy little tip of yours! I&#8217;m an html/css amateur (as is evident on my page :p) and if you&#8217;ve ever viewed my page in IE, you&#8217;ll see my borders dont quite fit my sidebar and main. I goofed around with my css and hid some padding values which made it look better in firefox, but its not right. if you have any suggestions for me, I&#8217;d be very appreciative <img src='http://www.caperet.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://www.caperet.com/2005/09/incremental-improvement/comment-page-1/#comment-89</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Fri, 23 Sep 2005 07:26:34 +0000</pubDate>
		<guid isPermaLink="false">http://fruey.free.fr/wordpress/?p=71#comment-89</guid>
		<description>Thanks for your comments. As I surf around, I try to take note of stuff that I see in order to work out how it&#039;s done. This little trick was inspired by a number of sites using transparency. Mostly people have used PNG files which have &lt;em&gt;alpha transparency&lt;/em&gt;. GIFs have pixels that are either transparent or not, whereas PNG pixels can be partly opaque. When IE starts supporting PNG alpha transparency properly, you&#039;ll start to see a lot more very neat rounded corners and stuff like that. The fact that CSS now allows transparency also allows a lot of useful effects, I hope Tara&#039;s blog is a good example.</description>
		<content:encoded><![CDATA[<p>Thanks for your comments. As I surf around, I try to take note of stuff that I see in order to work out how it&#8217;s done. This little trick was inspired by a number of sites using transparency. Mostly people have used PNG files which have <em>alpha transparency</em>. GIFs have pixels that are either transparent or not, whereas PNG pixels can be partly opaque. When IE starts supporting PNG alpha transparency properly, you&#8217;ll start to see a lot more very neat rounded corners and stuff like that. The fact that CSS now allows transparency also allows a lot of useful effects, I hope Tara&#8217;s blog is a good example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cassiopeia</title>
		<link>http://www.caperet.com/2005/09/incremental-improvement/comment-page-1/#comment-83</link>
		<dc:creator>Cassiopeia</dc:creator>
		<pubDate>Thu, 22 Sep 2005 12:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://fruey.free.fr/wordpress/?p=71#comment-83</guid>
		<description>I didn&#039;t know you could do that?

I love learning new things....:)

Thanks for the tip!</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t know you could do that?</p>
<p>I love learning new things&#8230;.:)</p>
<p>Thanks for the tip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paula</title>
		<link>http://www.caperet.com/2005/09/incremental-improvement/comment-page-1/#comment-81</link>
		<dc:creator>Paula</dc:creator>
		<pubDate>Thu, 22 Sep 2005 10:24:22 +0000</pubDate>
		<guid isPermaLink="false">http://fruey.free.fr/wordpress/?p=71#comment-81</guid>
		<description>Nice job.</description>
		<content:encoded><![CDATA[<p>Nice job.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tara</title>
		<link>http://www.caperet.com/2005/09/incremental-improvement/comment-page-1/#comment-79</link>
		<dc:creator>Tara</dc:creator>
		<pubDate>Wed, 21 Sep 2005 14:21:48 +0000</pubDate>
		<guid isPermaLink="false">http://fruey.free.fr/wordpress/?p=71#comment-79</guid>
		<description>Again thanks for your help, it was very inventive and clever of you :)</description>
		<content:encoded><![CDATA[<p>Again thanks for your help, it was very inventive and clever of you <img src='http://www.caperet.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

