<?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 Joe Lanman</title>
	<atom:link href="http://www.joelanman.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joelanman.com</link>
	<description>Web design and development when not playing computer games</description>
	<lastBuildDate>Thu, 20 Oct 2011 11:10:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Transferring TFL cycle routes to Android by Jonathan Melhuish</title>
		<link>http://www.joelanman.com/2010/09/tfl-cycle-maps-to-android/#comment-477</link>
		<dc:creator>Jonathan Melhuish</dc:creator>
		<pubDate>Thu, 20 Oct 2011 11:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.joelanman.com/?p=87#comment-477</guid>
		<description>Looks like OpenStreetMap has lots of the cycle maps from the rest of the country/world so maybe I&#039;ll try a similar trick.. thanks for the idea :)</description>
		<content:encoded><![CDATA[<p>Looks like OpenStreetMap has lots of the cycle maps from the rest of the country/world so maybe I&#8217;ll try a similar trick.. thanks for the idea :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Transferring TFL cycle routes to Android by J L</title>
		<link>http://www.joelanman.com/2010/09/tfl-cycle-maps-to-android/#comment-407</link>
		<dc:creator>J L</dc:creator>
		<pubDate>Thu, 09 Jun 2011 11:17:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.joelanman.com/?p=87#comment-407</guid>
		<description>You can also email the file to yourself, but unfortunately your email program may not want to do anything with a &#039;.gpx&#039; file.

I found I could change the file extension on my PC before sending (to e.g. &#039;.txt&#039;), and then use a program like Astro File Manager to change the file extension back to &#039;.gpx&#039; on my phone.</description>
		<content:encoded><![CDATA[<p>You can also email the file to yourself, but unfortunately your email program may not want to do anything with a &#8216;.gpx&#8217; file.</p>
<p>I found I could change the file extension on my PC before sending (to e.g. &#8216;.txt&#8217;), and then use a program like Astro File Manager to change the file extension back to &#8216;.gpx&#8217; on my phone.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Prototyping with jsFiddle.net by Mikael</title>
		<link>http://www.joelanman.com/2010/07/prototyping-with-jsfiddle-net/#comment-396</link>
		<dc:creator>Mikael</dc:creator>
		<pubDate>Fri, 13 May 2011 06:58:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.joelanman.com/?p=43#comment-396</guid>
		<description>Bernard, jsbin doesn&#039;t have extjs support, so it doesn&#039;t work for me. What&#039;s wrong with a useful header bar anyway? Would be nice to be able to move it out of the way if you don&#039;t need it I suppose.</description>
		<content:encoded><![CDATA[<p>Bernard, jsbin doesn&#8217;t have extjs support, so it doesn&#8217;t work for me. What&#8217;s wrong with a useful header bar anyway? Would be nice to be able to move it out of the way if you don&#8217;t need it I suppose.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Usable multiple-selection with checkbox lists and jQuery by Remi Roques</title>
		<link>http://www.joelanman.com/2009/03/simple-multiple-selection-with-checkbox-lists-and-jquery/#comment-389</link>
		<dc:creator>Remi Roques</dc:creator>
		<pubDate>Tue, 19 Apr 2011 23:32:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.joelanman.com/?p=11#comment-389</guid>
		<description>For IE6/7, try that CSS: got rid of the 26px, padding and the posititon attributes.


body {
	padding: 40px;
	font-family: Arial, Helvetica, sans-serif;
}

h1 {
	font-size: 1em;
}

ul#albums {
	width: 220px;
	height: 160px;
	overflow-y: auto;
	overflow-x: hidden;
	list-style: none;
	padding: 0;
	border: 1px solid #CCC;
}

#albums li label {
	display: block;
	border-bottom: 1px solid #DDD;
	padding: 4px 4px 4px 4px;
	color: #000;
	outline: none;
}

#albums li label:hover {
	color: #000;
	background-color: #EEE;
}

#albums li label.selected {
	color: #FFF;
	background-color: #CCC;
}

#albums li label .checkbox {
	top: 2px;
	left: 2px;
}</description>
		<content:encoded><![CDATA[<p>For IE6/7, try that CSS: got rid of the 26px, padding and the posititon attributes.</p>
<p>body {<br />
	padding: 40px;<br />
	font-family: Arial, Helvetica, sans-serif;<br />
}</p>
<p>h1 {<br />
	font-size: 1em;<br />
}</p>
<p>ul#albums {<br />
	width: 220px;<br />
	height: 160px;<br />
	overflow-y: auto;<br />
	overflow-x: hidden;<br />
	list-style: none;<br />
	padding: 0;<br />
	border: 1px solid #CCC;<br />
}</p>
<p>#albums li label {<br />
	display: block;<br />
	border-bottom: 1px solid #DDD;<br />
	padding: 4px 4px 4px 4px;<br />
	color: #000;<br />
	outline: none;<br />
}</p>
<p>#albums li label:hover {<br />
	color: #000;<br />
	background-color: #EEE;<br />
}</p>
<p>#albums li label.selected {<br />
	color: #FFF;<br />
	background-color: #CCC;<br />
}</p>
<p>#albums li label .checkbox {<br />
	top: 2px;<br />
	left: 2px;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Usable multiple-selection with checkbox lists and jQuery by remi</title>
		<link>http://www.joelanman.com/2009/03/simple-multiple-selection-with-checkbox-lists-and-jquery/#comment-387</link>
		<dc:creator>remi</dc:creator>
		<pubDate>Tue, 19 Apr 2011 04:07:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.joelanman.com/?p=11#comment-387</guid>
		<description>Hi there. Interesting UI. I join Eno: any idea for a fix for IE6/7 ?</description>
		<content:encoded><![CDATA[<p>Hi there. Interesting UI. I join Eno: any idea for a fix for IE6/7 ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Transferring TFL cycle routes to Android by EmilyK</title>
		<link>http://www.joelanman.com/2010/09/tfl-cycle-maps-to-android/#comment-331</link>
		<dc:creator>EmilyK</dc:creator>
		<pubDate>Thu, 17 Feb 2011 12:11:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.joelanman.com/?p=87#comment-331</guid>
		<description>Thanks so much for this, been trying to figure out a way to do this for ages!
Emily</description>
		<content:encoded><![CDATA[<p>Thanks so much for this, been trying to figure out a way to do this for ages!<br />
Emily</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Prototyping with jsFiddle.net by Jason Grant</title>
		<link>http://www.joelanman.com/2010/07/prototyping-with-jsfiddle-net/#comment-329</link>
		<dc:creator>Jason Grant</dc:creator>
		<pubDate>Tue, 15 Feb 2011 09:42:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.joelanman.com/?p=43#comment-329</guid>
		<description>Can we see an example of something you have prototyped using this method? 

I am starting to get intrigued by this.</description>
		<content:encoded><![CDATA[<p>Can we see an example of something you have prototyped using this method? </p>
<p>I am starting to get intrigued by this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Usable multiple-selection with checkbox lists and jQuery by eno bassey</title>
		<link>http://www.joelanman.com/2009/03/simple-multiple-selection-with-checkbox-lists-and-jquery/#comment-294</link>
		<dc:creator>eno bassey</dc:creator>
		<pubDate>Mon, 10 Jan 2011 08:20:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.joelanman.com/?p=11#comment-294</guid>
		<description>hi thanks for this it actually helped me out but wen i view in ie7 or ie6 it doesnt work why?</description>
		<content:encoded><![CDATA[<p>hi thanks for this it actually helped me out but wen i view in ie7 or ie6 it doesnt work why?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IE Bug: Fading does not work on child elements that have position rules by Frédéric André</title>
		<link>http://www.joelanman.com/2009/12/ie-bug-fading-does-not-work-on-child-elements-that-have-position-rules/#comment-199</link>
		<dc:creator>Frédéric André</dc:creator>
		<pubDate>Wed, 22 Sep 2010 13:50:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.joelanman.com/?p=14#comment-199</guid>
		<description>Thanks for your post, didn&#039;t realise it was due to elements having a position rule, I was about to render page as IE7.</description>
		<content:encoded><![CDATA[<p>Thanks for your post, didn&#8217;t realise it was due to elements having a position rule, I was about to render page as IE7.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IE Bug: Fading animation makes text render without anti-aliasing by Mark Iliff</title>
		<link>http://www.joelanman.com/2009/12/ie-bug-fading-animation-makes-text-render-without-anti-aliasing/#comment-188</link>
		<dc:creator>Mark Iliff</dc:creator>
		<pubDate>Wed, 28 Jul 2010 00:14:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.joelanman.com/?p=15#comment-188</guid>
		<description>Smashing. Works a treat. Thanks very much for sharing.

BTW you say &quot;Affects: IE6, IE7&quot;. My client has IE8 and says that it suffers from the same problem.

µ</description>
		<content:encoded><![CDATA[<p>Smashing. Works a treat. Thanks very much for sharing.</p>
<p>BTW you say &#8220;Affects: IE6, IE7&#8243;. My client has IE8 and says that it suffers from the same problem.</p>
<p>µ</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.982 seconds -->

