<?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 for Laurabelle's Blog</title>
	<atom:link href="http://blog.niceperson.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.niceperson.org</link>
	<description>Making it up as I go along.</description>
	<lastBuildDate>Fri, 26 Feb 2010 22:23:04 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Another day, another cluestick by Aleta</title>
		<link>http://blog.niceperson.org/2003/02/10/another-day-another-cluestick/comment-page-1/#comment-2345</link>
		<dc:creator>Aleta</dc:creator>
		<pubDate>Fri, 26 Feb 2010 22:23:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.niceperson.org/wordpress/2003/02/10/another-day-another-cluestick/#comment-2345</guid>
		<description>I love things to be in order and organized, so I appreciate that.  One of my good friends is a Librarian and she&#039;s passionate about her job.  Her face lights up and she could go on and on about the things available with the library.  It&#039;s not just about books :)</description>
		<content:encoded><![CDATA[<p>I love things to be in order and organized, so I appreciate that.  One of my good friends is a Librarian and she's passionate about her job.  Her face lights up and she could go on and on about the things available with the library.  It's not just about books :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pinch that penny! by Aleta</title>
		<link>http://blog.niceperson.org/2003/02/10/pinch-that-penny/comment-page-1/#comment-2344</link>
		<dc:creator>Aleta</dc:creator>
		<pubDate>Fri, 26 Feb 2010 22:21:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.niceperson.org/wordpress/2003/02/10/pinch-that-penny/#comment-2344</guid>
		<description>I don&#039;t drink coffee, but I love the smell of it.  It&#039;s a nice compliment to the smell of books :)</description>
		<content:encoded><![CDATA[<p>I don't drink coffee, but I love the smell of it.  It's a nice compliment to the smell of books :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My mountain is bigger than yours by jared</title>
		<link>http://blog.niceperson.org/2005/09/29/my-mountain-is-bigger-than-yours/comment-page-1/#comment-2136</link>
		<dc:creator>jared</dc:creator>
		<pubDate>Thu, 10 Dec 2009 07:06:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.niceperson.org/?p=601#comment-2136</guid>
		<description>Zachary Weston was a great friend of mine. I was recently thinking of him and googled his name, this came up. It&#039;s too bad you didn&#039;t find him, he would have made you smile.</description>
		<content:encoded><![CDATA[<p>Zachary Weston was a great friend of mine. I was recently thinking of him and googled his name, this came up. It's too bad you didn't find him, he would have made you smile.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Background transparency in CSS by Marco</title>
		<link>http://blog.niceperson.org/2005/01/18/background-transparency-in-css/comment-page-1/#comment-2054</link>
		<dc:creator>Marco</dc:creator>
		<pubDate>Thu, 08 Oct 2009 09:30:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.niceperson.org/wordpress/2005/01/18/background-transparency-in-css/#comment-2054</guid>
		<description>hmm okay:
.box-div is surrounding the other two divs

.bgtrans is an empty div inside .box-div

.text-div is inside .box-div and contains the text</description>
		<content:encoded><![CDATA[<p>hmm okay:<br />
.box-div is surrounding the other two divs</p>
<p>.bgtrans is an empty div inside .box-div</p>
<p>.text-div is inside .box-div and contains the text</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Background transparency in CSS by Marco</title>
		<link>http://blog.niceperson.org/2005/01/18/background-transparency-in-css/comment-page-1/#comment-2053</link>
		<dc:creator>Marco</dc:creator>
		<pubDate>Thu, 08 Oct 2009 09:19:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.niceperson.org/wordpress/2005/01/18/background-transparency-in-css/#comment-2053</guid>
		<description>that did it for me. maybe there is a solution for the dynamic height in ie6?!?

CSS:
.box {
overflow: hidden;
height: auto !important;
height: 100px; /* height has to be specified here for IE6 */
}
.bgtrans {
position: absolute;
left: 0;
top: 0;
display: block;
height: 10000px;
width: 10000px;
background-color: lime;
opacity: 0.5;
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
filter:alpha(opacity=50);
z-index: 1;
}
.text {
float: left;
position: relative;
z-index: 2;
}

HTML:

	
	blabla
</description>
		<content:encoded><![CDATA[<p>that did it for me. maybe there is a solution for the dynamic height in ie6?!?</p>
<p>CSS:<br />
.box {<br />
overflow: hidden;<br />
height: auto !important;<br />
height: 100px; /* height has to be specified here for IE6 */<br />
}<br />
.bgtrans {<br />
position: absolute;<br />
left: 0;<br />
top: 0;<br />
display: block;<br />
height: 10000px;<br />
width: 10000px;<br />
background-color: lime;<br />
opacity: 0.5;<br />
-moz-opacity: 0.5;<br />
-khtml-opacity: 0.5;<br />
filter:alpha(opacity=50);<br />
z-index: 1;<br />
}<br />
.text {<br />
float: left;<br />
position: relative;<br />
z-index: 2;<br />
}</p>
<p>HTML:</p>
<p>	blabla</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eugene by Val</title>
		<link>http://blog.niceperson.org/2009/09/06/eugene/comment-page-1/#comment-2052</link>
		<dc:creator>Val</dc:creator>
		<pubDate>Tue, 06 Oct 2009 20:34:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.niceperson.org/?p=1054#comment-2052</guid>
		<description>Amazingly, you cannot buy alcohol at all in Oregon except at a state licensed Liquor Store -- and not on Sundays.   If you are buying at a grocery store then you are buying beer or wine only.

Sorry for your tarnished Eugene experience, come back again sometime for a better visit!</description>
		<content:encoded><![CDATA[<p>Amazingly, you cannot buy alcohol at all in Oregon except at a state licensed Liquor Store -- and not on Sundays.   If you are buying at a grocery store then you are buying beer or wine only.</p>
<p>Sorry for your tarnished Eugene experience, come back again sometime for a better visit!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Strangest user-agent I&#8217;ve ever seen by Stewart</title>
		<link>http://blog.niceperson.org/2005/01/17/strangest-user-agent-ive-ever-seen/comment-page-1/#comment-2043</link>
		<dc:creator>Stewart</dc:creator>
		<pubDate>Wed, 23 Sep 2009 10:58:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.niceperson.org/wordpress/2005/01/17/strangest-user-agent-ive-ever-seen/#comment-2043</guid>
		<description>My guess is that many of these weird user-agent strings come from either random home-made programs or browsers that let you put whatever you want as the UA.</description>
		<content:encoded><![CDATA[<p>My guess is that many of these weird user-agent strings come from either random home-made programs or browsers that let you put whatever you want as the UA.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eugene by Laurabelle</title>
		<link>http://blog.niceperson.org/2009/09/06/eugene/comment-page-1/#comment-2032</link>
		<dc:creator>Laurabelle</dc:creator>
		<pubDate>Mon, 07 Sep 2009 22:01:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.niceperson.org/?p=1054#comment-2032</guid>
		<description>I have no idea!  The checker might simply be wrong, or there might be an exception for parents with their own children.  (I expect the problem case is a group of college-age kids where only one is over 21 and buying alcohol for a bunch of friends.)

If you&#039;re concerned, you should check out the laws and regulations yourself rather than going by my second-hand report from a supermarket checker!</description>
		<content:encoded><![CDATA[<p>I have no idea!  The checker might simply be wrong, or there might be an exception for parents with their own children.  (I expect the problem case is a group of college-age kids where only one is over 21 and buying alcohol for a bunch of friends.)</p>
<p>If you're concerned, you should check out the laws and regulations yourself rather than going by my second-hand report from a supermarket checker!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eugene by Julie paradox</title>
		<link>http://blog.niceperson.org/2009/09/06/eugene/comment-page-1/#comment-2031</link>
		<dc:creator>Julie paradox</dc:creator>
		<pubDate>Mon, 07 Sep 2009 10:46:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.niceperson.org/?p=1054#comment-2031</guid>
		<description>so does that mean you can&#039;t buy alcohol accompanied by children?  I ask because most of my alcohol buying takes place during our grocery shop, on which the children accompany me.  I can imagine that for a single parent such a law might get very annoying!</description>
		<content:encoded><![CDATA[<p>so does that mean you can't buy alcohol accompanied by children?  I ask because most of my alcohol buying takes place during our grocery shop, on which the children accompany me.  I can imagine that for a single parent such a law might get very annoying!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dear diary by Jeff</title>
		<link>http://blog.niceperson.org/2009/08/31/dear-diary-2/comment-page-1/#comment-2024</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Tue, 01 Sep 2009 05:21:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.niceperson.org/?p=1052#comment-2024</guid>
		<description>Not just a level, a level &lt;em&gt;and&lt;/em&gt; a plumb bob.

This could revolutionize the personal beauty and hair maintenance industry.</description>
		<content:encoded><![CDATA[<p>Not just a level, a level <em>and</em> a plumb bob.</p>
<p>This could revolutionize the personal beauty and hair maintenance industry.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
