<?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: Consistent List Markup</title>
	<atom:link href="http://www.devlounge.net/code/consistent-list-markup/feed" rel="self" type="application/rss+xml" />
	<link>http://www.devlounge.net/code/consistent-list-markup</link>
	<description>Design, Develop, and Grow</description>
	<lastBuildDate>Wed, 17 Mar 2010 12:23:00 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Cosiu</title>
		<link>http://www.devlounge.net/code/consistent-list-markup/comment-page-1#comment-10899</link>
		<dc:creator>Cosiu</dc:creator>
		<pubDate>Mon, 18 Dec 2006 16:53:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/consistent-list-markup#comment-10899</guid>
		<description>Does anybody knows out there how to qsort an unordered list..?

all best</description>
		<content:encoded><![CDATA[<p>Does anybody knows out there how to qsort an unordered list..?</p>
<p>all best</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aj</title>
		<link>http://www.devlounge.net/code/consistent-list-markup/comment-page-1#comment-1237</link>
		<dc:creator>aj</dc:creator>
		<pubDate>Sat, 29 Jul 2006 21:43:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/consistent-list-markup#comment-1237</guid>
		<description>Ahh opps, nvm, I&#039;ll leave stuff alone now. Sorry about that</description>
		<content:encoded><![CDATA[<p>Ahh opps, nvm, I&#8217;ll leave stuff alone now. Sorry about that</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Pearson</title>
		<link>http://www.devlounge.net/code/consistent-list-markup/comment-page-1#comment-1236</link>
		<dc:creator>Andy Pearson</dc:creator>
		<pubDate>Sat, 29 Jul 2006 21:24:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/consistent-list-markup#comment-1236</guid>
		<description>Cheers AJ, though the code is now incorrect, the markup must be all in one line to remove the whitespace, i edited it and put it back to the way it was.</description>
		<content:encoded><![CDATA[<p>Cheers AJ, though the code is now incorrect, the markup must be all in one line to remove the whitespace, i edited it and put it back to the way it was.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aj</title>
		<link>http://www.devlounge.net/code/consistent-list-markup/comment-page-1#comment-1026</link>
		<dc:creator>aj</dc:creator>
		<pubDate>Sat, 22 Jul 2006 11:11:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/consistent-list-markup#comment-1026</guid>
		<description>Fixed it for you. The code plugin breaks everything down by where the line breaks are, so it didn&#039;t seperate the code like it should have. Stupid thing :P</description>
		<content:encoded><![CDATA[<p>Fixed it for you. The code plugin breaks everything down by where the line breaks are, so it didn&#8217;t seperate the code like it should have. Stupid thing <img src='http://www.devlounge.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Pearson</title>
		<link>http://www.devlounge.net/code/consistent-list-markup/comment-page-1#comment-1024</link>
		<dc:creator>Andy Pearson</dc:creator>
		<pubDate>Sat, 22 Jul 2006 10:27:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/consistent-list-markup#comment-1024</guid>
		<description>Yup, if you look at the source file, you can see this method, it is also described at the bottom of the article, trouble is the markup display plugin over here on Devlounge seems to render it all in one line for some reason.

And your right, it does help solve alot of IE quirks, I seem to remember it is triggered when you set the internal anchors to display block.</description>
		<content:encoded><![CDATA[<p>Yup, if you look at the source file, you can see this method, it is also described at the bottom of the article, trouble is the markup display plugin over here on Devlounge seems to render it all in one line for some reason.</p>
<p>And your right, it does help solve alot of IE quirks, I seem to remember it is triggered when you set the internal anchors to display block.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron Bassett</title>
		<link>http://www.devlounge.net/code/consistent-list-markup/comment-page-1#comment-994</link>
		<dc:creator>Aaron Bassett</dc:creator>
		<pubDate>Fri, 21 Jul 2006 13:03:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/consistent-list-markup#comment-994</guid>
		<description>I&#039;ve encountered this problem alot in IE when creating navigation menus. And my prefered method of writing up my lists to remove whitespace is like:

&lt;ul
	&gt;&lt;li&gt;&lt;a href=&quot;#&quot;&gt;One&lt;/a&gt;&lt;/li
	&gt;&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Two&lt;/a&gt;&lt;/li
	&gt;&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Three&lt;/a&gt;&lt;/li
	&gt;&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Four&lt;/a&gt;&lt;/li
&gt;&lt;/ul&gt;

same principle as your post but I just find the structure easier to read as it is closer to the normal list structure.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve encountered this problem alot in IE when creating navigation menus. And my prefered method of writing up my lists to remove whitespace is like:</p>
<p>&lt;ul<br />
	&gt;&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;One&lt;/a&gt;&lt;/li<br />
	&gt;&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Two&lt;/a&gt;&lt;/li<br />
	&gt;&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Three&lt;/a&gt;&lt;/li<br />
	&gt;&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Four&lt;/a&gt;&lt;/li<br />
&gt;&lt;/ul&gt;</p>
<p>same principle as your post but I just find the structure easier to read as it is closer to the normal list structure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Life Update &#124; blog.critical</title>
		<link>http://www.devlounge.net/code/consistent-list-markup/comment-page-1#comment-991</link>
		<dc:creator>Life Update &#124; blog.critical</dc:creator>
		<pubDate>Fri, 21 Jul 2006 07:38:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/consistent-list-markup#comment-991</guid>
		<description>[...] Devlounge is a great little web design site, and I recently got the chance to post my article on Consistent List Markup over there, it’s a great honor to see my words on somewhere other than this blog, and I will hopefully publish more tutorials over there in the coming months. Devlounge V2 also bought with it a new community powered by the kick arse Vanilla, its pretty slow over there at the moment (I count 3 members) but I’m hoping it will flourish into a great place to go and talk web design. [...]</description>
		<content:encoded><![CDATA[<p>[...] Devlounge is a great little web design site, and I recently got the chance to post my article on Consistent List Markup over there, it’s a great honor to see my words on somewhere other than this blog, and I will hopefully publish more tutorials over there in the coming months. Devlounge V2 also bought with it a new community powered by the kick arse Vanilla, its pretty slow over there at the moment (I count 3 members) but I’m hoping it will flourish into a great place to go and talk web design. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aj</title>
		<link>http://www.devlounge.net/code/consistent-list-markup/comment-page-1#comment-980</link>
		<dc:creator>aj</dc:creator>
		<pubDate>Thu, 20 Jul 2006 21:14:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/consistent-list-markup#comment-980</guid>
		<description>Thanks for the additional resources Johan</description>
		<content:encoded><![CDATA[<p>Thanks for the additional resources Johan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan</title>
		<link>http://www.devlounge.net/code/consistent-list-markup/comment-page-1#comment-977</link>
		<dc:creator>Johan</dc:creator>
		<pubDate>Thu, 20 Jul 2006 19:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/consistent-list-markup#comment-977</guid>
		<description>...

if ever need to make a centered floated menu for IE 5 MAC (a rare case)

http://www.brunildo.org/test/NavBar2.html 
(example 9}</description>
		<content:encoded><![CDATA[<p>&#8230;</p>
<p>if ever need to make a centered floated menu for IE 5 MAC (a rare case)</p>
<p><a href="http://www.brunildo.org/test/NavBar2.html" rel="nofollow">http://www.brunildo.org/test/NavBar2.html</a><br />
(example 9}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan</title>
		<link>http://www.devlounge.net/code/consistent-list-markup/comment-page-1#comment-976</link>
		<dc:creator>Johan</dc:creator>
		<pubDate>Thu, 20 Jul 2006 18:59:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/consistent-list-markup#comment-976</guid>
		<description>Have a look here for centered floated menus:

- 2 examples (with known width or no width)

http://cssplay.co.uk/menus/centered.html</description>
		<content:encoded><![CDATA[<p>Have a look here for centered floated menus:</p>
<p>- 2 examples (with known width or no width)</p>
<p><a href="http://cssplay.co.uk/menus/centered.html" rel="nofollow">http://cssplay.co.uk/menus/centered.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Pearson</title>
		<link>http://www.devlounge.net/code/consistent-list-markup/comment-page-1#comment-973</link>
		<dc:creator>Andy Pearson</dc:creator>
		<pubDate>Thu, 20 Jul 2006 17:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/consistent-list-markup#comment-973</guid>
		<description>Very true Johan, there are numerous methods to remove the white space, and most of the time you will be doing something much more complex with the list anyway, so floating left or right shouldn’t be a problem. 

Using floats can get complicated, and I’m pretty sure (though happy to be proved wrong!) that you could not use floats to create a horizontally centered list. This article served as a way to get the technique “out there” and hopefully it will help someone!

I’m glad you read the article, and glad it got you thinking!</description>
		<content:encoded><![CDATA[<p>Very true Johan, there are numerous methods to remove the white space, and most of the time you will be doing something much more complex with the list anyway, so floating left or right shouldn’t be a problem. </p>
<p>Using floats can get complicated, and I’m pretty sure (though happy to be proved wrong!) that you could not use floats to create a horizontally centered list. This article served as a way to get the technique “out there” and hopefully it will help someone!</p>
<p>I’m glad you read the article, and glad it got you thinking!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan</title>
		<link>http://www.devlounge.net/code/consistent-list-markup/comment-page-1#comment-972</link>
		<dc:creator>Johan</dc:creator>
		<pubDate>Thu, 20 Jul 2006 16:44:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/consistent-list-markup#comment-972</guid>
		<description>...

Also you have to keep in mind to clear any floats, if necessary. Various methods can be used for this.</description>
		<content:encoded><![CDATA[<p>&#8230;</p>
<p>Also you have to keep in mind to clear any floats, if necessary. Various methods can be used for this.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
