<?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: An IE/ordered list challenge</title>
	<atom:link href="http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/</link>
	<description>Web development and Internet trends</description>
	<pubDate>Tue, 06 Jan 2009 08:37:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-379769</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Mon, 18 Aug 2008 21:50:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-379769</guid>
		<description>Phil,

Good seeing you here!
And, I'm sorry, it really sucks. :-)</description>
		<content:encoded><![CDATA[<p>Phil,</p>
<p>Good seeing you here!<br />
And, I&#8217;m sorry, it really sucks. <img src='http://www.robertnyman.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil Sherry</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-365864</link>
		<dc:creator>Phil Sherry</dc:creator>
		<pubDate>Wed, 06 Aug 2008 14:53:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-365864</guid>
		<description>This bug annoys the shit out of me. Seriously.</description>
		<content:encoded><![CDATA[<p>This bug annoys the shit out of me. Seriously.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rene</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-306938</link>
		<dc:creator>Rene</dc:creator>
		<pubDate>Tue, 17 Jun 2008 20:03:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-306938</guid>
		<description>You can have floated ordered lists cross-browser, including IE 6, using pure CSS:

CSS Code:
#wrapper { width:300px; border:1px solid #ccc; padding:10px; }

ul,ol,li {margin:0;padding:0;}
ul,ol{list-style:none;}

a:link,a:visited{text-decoration:none;color:#be7206;}
a:hover{text-decoration:underline;color:#be7206;}
ol:after, ul:after {
content:".";
display:block;
font-size:0px;
line-height:0px;
height:0;
clear:both;
visibility:hidden;
}

ol, ul, .bd, {zoom:1;_height:1px;}

.bd { padding:0; }

/* ie hacks */
#popsearch .bd {padding:0;_padding-left:0;}
#popsearch ol{float:left;width:49.5%;list-style:decimal;}
#popsearch li{font:normal 11px Verdana black;_font-size:75%;color:#333;margin-left:22px;*margin-left:2.9em;padding:3px 0;}
#popsearch li a{position:relative;font:bold 92% verdana;left:-3px;*left:-7px;}


HTML Code:

&#60;div id="wrapper"&#62;
&#60;div id="popsearch" class="bd"&#62;
&#60;ol start="1"&#62;
    &#60;li&#62;&#60;a href="#x"&#62;Floated Item 1&#60;/a&#62;&#60;/li&#62;
    &#60;li&#62;&#60;a href="#x"&#62;Floated Item 2&#60;/a&#62;&#60;/li&#62;
    &#60;li&#62;&#60;a href="#x"&#62;Floated Item 3&#60;/a&#62;&#60;/li&#62;
    &#60;li&#62;&#60;a href="#x"&#62;Floated Item 4&#60;/a&#62;&#60;/li&#62;
    &#60;li&#62;&#60;a href="#x"&#62;Floated Item 5&#60;/a&#62;&#60;/li&#62;
&#60;/ol&#62;

&#60;ol start="6"&#62;
    &#60;li&#62;&#60;a href="#x"&#62;Floated Item 6&#60;/a&#62;&#60;/li&#62;
    &#60;li&#62;&#60;a href="#x"&#62;Floated Item 7&#60;/a&#62;&#60;/li&#62;
    &#60;li&#62;&#60;a href="#x"&#62;Floated Item 8&#60;/a&#62;&#60;/li&#62;
    &#60;li&#62;&#60;a href="#x"&#62;Floated Item 9&#60;/a&#62;&#60;/li&#62;
    &#60;li&#62;&#60;a href="#x"&#62;Floated Item 10&#60;/a&#62;&#60;/li&#62;
&#60;/ol&#62;
&#60;/div&#62;&#60;!-- end #popsearch --&#62;
&#60;/div&#62;&#60;!-- end #wrapper --&#62;


Enjoy!!</description>
		<content:encoded><![CDATA[<p>You can have floated ordered lists cross-browser, including <acronym title="Internet Explorer">IE</acronym> 6, using pure CSS:</p>
<p><acronym title="Cascading Style Sheets">CSS</acronym> Code:<br />
#wrapper { width:300px; border:1px solid #ccc; padding:10px; }</p>
<p>ul,ol,li {margin:0;padding:0;}<br />
ul,ol{list-style:none;}</p>
<p>a:link,a:visited{text-decoration:none;color:#be7206;}<br />
a:hover{text-decoration:underline;color:#be7206;}<br />
ol:after, ul:after {<br />
content:&#8221;.&#8221;;<br />
display:block;<br />
font-size:0px;<br />
line-height:0px;<br />
height:0;<br />
clear:both;<br />
visibility:hidden;<br />
}</p>
<p>ol, ul, .bd, {zoom:1;_height:1px;}</p>
<p>.bd { padding:0; }</p>
<p>/* <acronym title="Internet Explorer">IE</acronym> hacks */<br />
#popsearch .bd {padding:0;_padding-left:0;}<br />
#popsearch ol{float:left;width:49.5%;list-style:decimal;}<br />
#popsearch li{font:normal 11px Verdana black;_font-size:75%;color:#333;margin-left:22px;*margin-left:2.9em;padding:3px 0;}<br />
#popsearch li a{position:relative;font:bold 92% verdana;left:-3px;*left:-7px;}</p>
<p><acronym title="HyperText Markup Language">HTML</acronym> Code:</p>
<p>&lt;div id=&#8221;wrapper&#8221;&gt;<br />
&lt;div id=&#8221;popsearch&#8221; class=&#8221;bd&#8221;&gt;<br />
&lt;ol start=&#8221;1&#8243;&gt;<br />
    &lt;li&gt;&lt;a href=&#8221;#x&#8221;&gt;Floated Item 1&lt;/a&gt;&lt;/li&gt;<br />
    &lt;li&gt;&lt;a href=&#8221;#x&#8221;&gt;Floated Item 2&lt;/a&gt;&lt;/li&gt;<br />
    &lt;li&gt;&lt;a href=&#8221;#x&#8221;&gt;Floated Item 3&lt;/a&gt;&lt;/li&gt;<br />
    &lt;li&gt;&lt;a href=&#8221;#x&#8221;&gt;Floated Item 4&lt;/a&gt;&lt;/li&gt;<br />
    &lt;li&gt;&lt;a href=&#8221;#x&#8221;&gt;Floated Item 5&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ol&gt;</p>
<p>&lt;ol start=&#8221;6&#8243;&gt;<br />
    &lt;li&gt;&lt;a href=&#8221;#x&#8221;&gt;Floated Item 6&lt;/a&gt;&lt;/li&gt;<br />
    &lt;li&gt;&lt;a href=&#8221;#x&#8221;&gt;Floated Item 7&lt;/a&gt;&lt;/li&gt;<br />
    &lt;li&gt;&lt;a href=&#8221;#x&#8221;&gt;Floated Item 8&lt;/a&gt;&lt;/li&gt;<br />
    &lt;li&gt;&lt;a href=&#8221;#x&#8221;&gt;Floated Item 9&lt;/a&gt;&lt;/li&gt;<br />
    &lt;li&gt;&lt;a href=&#8221;#x&#8221;&gt;Floated Item 10&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ol&gt;<br />
&lt;/div&gt;&lt;!&#8211; end #popsearch &#8211;&gt;<br />
&lt;/div&gt;&lt;!&#8211; end #wrapper &#8211;&gt;</p>
<p>Enjoy!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Praveen</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-259739</link>
		<dc:creator>Praveen</dc:creator>
		<pubDate>Mon, 28 Apr 2008 15:38:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-259739</guid>
		<description>Hi, 

I am trying to display bullets in IE but it doesn't seems to be working. I can't control the outer div because they all are generated by random  text. 
Is there any way i can just put some style to li and make it show up in IE.

Thanks to all</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>I am trying to display bullets in <acronym title="Internet Explorer">IE</acronym> but it doesn&#8217;t seems to be working. I can&#8217;t control the outer div because they all are generated by random  text.<br />
Is there any way i can just put some style to li and make it show up in <acronym title="Internet Explorer">IE</acronym>.</p>
<p>Thanks to all</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sv..</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-237599</link>
		<dc:creator>Sv..</dc:creator>
		<pubDate>Thu, 27 Mar 2008 18:43:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-237599</guid>
		<description>Great going everybody,
Here is a small work-around which has solved this problem.

&#60;LI&#62; when floated, the list-item is considered as block in IE, and it converts the css value of "display" from "list-item" to "display:block", and so is the reason it doesn't show any numbers though it's an ordered list.

Now, this problem arises even when you define a width for the &#60;LI&#62; itself directly. 

So, the workaround is define the width for the "ul", rather than "li". The following is what i had used to solve this issue..

&lt;code&gt;
ol {float: left;width: 500px;list-style: decimal outside;}
li { margin-left: 30px; padding: 10px 0px;}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Great going everybody,<br />
Here is a small work-around which has solved this problem.</p>
<p>&lt;LI&gt; when floated, the list-item is considered as block in <acronym title="Internet Explorer">IE</acronym>, and it converts the <acronym title="Cascading Style Sheets">CSS</acronym> value of &#8220;display&#8221; from &#8220;list-item&#8221; to &#8220;display:block&#8221;, and so is the reason it doesn&#8217;t show any numbers though it&#8217;s an ordered list.</p>
<p>Now, this problem arises even when you define a width for the &lt;LI&gt; itself directly. </p>
<p>So, the workaround is define the width for the &#8220;ul&#8221;, rather than &#8220;li&#8221;. The following is what i had used to solve this issue..</p>
<p><code><br />
ol {float: left;width: 500px;list-style: decimal outside;}<br />
li { margin-left: 30px; padding: 10px 0px;}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hypnogogic - Links du jour</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-152969</link>
		<dc:creator>Hypnogogic - Links du jour</dc:creator>
		<pubDate>Fri, 30 Nov 2007 03:17:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-152969</guid>
		<description>[...] An IE/ordered list challenge - Robert?s talkI fuckin&#8217; hate IE. [...]</description>
		<content:encoded><![CDATA[<p>[...] An <acronym title="Internet Explorer">IE</acronym>/ordered list challenge - Robert?s talkI fuckin&#8217; hate <acronym title="Internet Explorer">IE</acronym>. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mat Wright</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-105306</link>
		<dc:creator>Mat Wright</dc:creator>
		<pubDate>Mon, 17 Sep 2007 10:39:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-105306</guid>
		<description>If the situation is desperate one could always use some css hacks to create the bullets in IE using background image:

&lt;code&gt;
/*hack to get IE to display arrows in floated lists*/
*:first-child+html ul{display:block;list-style:none;}
* html ul{display:block;list-style:none;}

*:first-child+html ul.fp_sectors li{background:url('/images/arrow.jpg') no-repeat left;padding-left:20px;}
* html ul.fp_sectors li{;background:url('/images/arrow.jpg') no-repeat left;padding-left:20px;}

/*hack to make list type image only show in non IE*/
html&#62;/**/body ul.fp_sectors{list-style-image: url('/images/arrow.jpg');}
&lt;/code&gt;

This is obvisouly a bit dirty but will work until we have a better solution !

Mat Wright
&lt;a&gt;Broadshout&lt;/a&gt;'</description>
		<content:encoded><![CDATA[<p>If the situation is desperate one could always use some <acronym title="Cascading Style Sheets">CSS</acronym> hacks to create the bullets in <acronym title="Internet Explorer">IE</acronym> using background image:</p>
<p><code><br />
/*hack to get <acronym title="Internet Explorer">IE</acronym> to display arrows in floated lists*/<br />
*:first-child+<acronym title="HyperText Markup Language">HTML</acronym> ul{display:block;list-style:none;}<br />
* <acronym title="HyperText Markup Language">HTML</acronym> ul{display:block;list-style:none;}</p>
<p>*:first-child+<acronym title="HyperText Markup Language">HTML</acronym> ul.fp_sectors li{background:<acronym title="Uniform Resource Locator">URL</acronym>('/images/arrow.jpg') no-repeat left;padding-left:20px;}<br />
* <acronym title="HyperText Markup Language">HTML</acronym> ul.fp_sectors li{;background:<acronym title="Uniform Resource Locator">URL</acronym>('/images/arrow.jpg') no-repeat left;padding-left:20px;}</p>
<p>/*hack to make list type image only show in non <acronym title="Internet Explorer">IE</acronym>*/<br />
<acronym title="HyperText Markup Language">HTML</acronym>&gt;/**/body ul.fp_sectors{list-style-image: <acronym title="Uniform Resource Locator">URL</acronym>('/images/arrow.jpg');}<br />
</code></p>
<p>This is obvisouly a bit dirty but will work until we have a better solution !</p>
<p>Mat Wright<br />
<a>Broadshout</a>&#8216;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dianna</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-104341</link>
		<dc:creator>Dianna</dc:creator>
		<pubDate>Fri, 14 Sep 2007 20:34:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-104341</guid>
		<description>I just put the OL inside the DIV... kind of retarded, that's IE for ya...</description>
		<content:encoded><![CDATA[<p>I just put the OL inside the DIV&#8230; kind of retarded, that&#8217;s <acronym title="Internet Explorer">IE</acronym> for ya&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-92304</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Fri, 17 Aug 2007 17:47:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-92304</guid>
		<description>Stumbled here via google as well. Nice blog!

Anyway, I'm having the same issue. The padding didn't work. My list is already positioned relatively and like most others, I dont know the width of all my list items so a fixed background wont really do the trick...

Guess it just can't be done...</description>
		<content:encoded><![CDATA[<p>Stumbled here via google as well. Nice blog!</p>
<p>Anyway, I&#8217;m having the same issue. The padding didn&#8217;t work. My list is already positioned relatively and like most others, I dont know the width of all my list items so a fixed background wont really do the trick&#8230;</p>
<p>Guess it just can&#8217;t be done&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ethodaddy</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-66228</link>
		<dc:creator>ethodaddy</dc:creator>
		<pubDate>Mon, 04 Jun 2007 11:38:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-66228</guid>
		<description>i had a similar problem and found that if i replaced the space with ascii character for space (&#38; nbsp;) it worked. not an ideal solution I know but it worked for me...</description>
		<content:encoded><![CDATA[<p>i had a similar problem and found that if i replaced the space with ascii character for space (&amp; nbsp;) it worked. not an ideal solution I know but it worked for me&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alison</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-35434</link>
		<dc:creator>alison</dc:creator>
		<pubDate>Mon, 12 Feb 2007 13:20:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-35434</guid>
		<description>I stumbled over this via google after banging my head against a wall for a few hours. But after reading the replies realised the best solution would be to remove all padding and margins from the , add left padding on the s, and then put the bullet point in as a no-repeat background image.

Works a treat.

(Wow, a live preview, how nifty!)</description>
		<content:encoded><![CDATA[<p>I stumbled over this via google after banging my head against a wall for a few hours. But after reading the replies realised the best solution would be to remove all padding and margins from the , add left padding on the s, and then put the bullet point in as a no-repeat background image.</p>
<p>Works a treat.</p>
<p>(Wow, a live preview, how nifty!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bart Noppen</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-21795</link>
		<dc:creator>Bart Noppen</dc:creator>
		<pubDate>Wed, 13 Dec 2006 23:33:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-21795</guid>
		<description>I ended up here via Google because I'm having the same problem with OL. Anyway I left them and switched to UL's.

About the dissapearing listbullets in UL's.
Set the UL to position: relative; and the bullets should re-appear.</description>
		<content:encoded><![CDATA[<p>I ended up here via Google because I&#8217;m having the same problem with OL. Anyway I left them and switched to UL&#8217;s.</p>
<p>About the dissapearing listbullets in UL&#8217;s.<br />
Set the UL to position: relative; and the bullets should re-appear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-7220</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Tue, 15 Aug 2006 19:07:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-7220</guid>
		<description>HT,

Interesting. Have you tested in previous versions of IE and Firefox, and also in Opera and Safari?</description>
		<content:encoded><![CDATA[<p>HT,</p>
<p>Interesting. Have you tested in previous versions of <acronym title="Internet Explorer">IE</acronym> and Firefox, and also in Opera and Safari?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HT</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-7219</link>
		<dc:creator>HT</dc:creator>
		<pubDate>Tue, 15 Aug 2006 19:01:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-7219</guid>
		<description>my solution:

.OrderedList
{
	margin:0;
	padding:0;
}

.OrderedList LI
{
	list-style-position: outside;
	margin-left:30px;
}

Works for IE7 beta3 and Firefox 2 beta1</description>
		<content:encoded><![CDATA[<p>my solution:</p>
<p>.OrderedList<br />
{<br />
	margin:0;<br />
	padding:0;<br />
}</p>
<p>.OrderedList LI<br />
{<br />
	list-style-position: outside;<br />
	margin-left:30px;<br />
}</p>
<p>Works for IE7 beta3 and Firefox 2 beta1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-3816</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Fri, 31 Mar 2006 07:45:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-3816</guid>
		<description>dexus,

Ha ha, thanks for the entertainment! :-)

I don't use &lt;code&gt;htc&lt;/code&gt;s in my code (although the same behavior can easily be attached through regular JavaScript) and, like you say, I'm not sure it would be a good solution to the problem. Nevertheless, it was interesting to see your thinking!</description>
		<content:encoded><![CDATA[<p>dexus,</p>
<p>Ha ha, thanks for the entertainment! <img src='http://www.robertnyman.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I don&#8217;t use <code>htc</code>s in my code (although the same behavior can easily be attached through regular JavaScript) and, like you say, I&#8217;m not sure it would be a good solution to the problem. Nevertheless, it was interesting to see your thinking!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dexus</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-3810</link>
		<dc:creator>dexus</dc:creator>
		<pubDate>Thu, 30 Mar 2006 18:24:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-3810</guid>
		<description>I had this problem to.
The way I fixed is was with a htc file.

You just put this in your CSS:
&lt;code&gt;ol {
&#160;&#160;behavior: url("ol.htc");
}&lt;/code&gt;

And you make a .htc file with this text inside:
&lt;code&gt;&#60;attach event="ondocumentready" handler="RepairOlBug" /&#62;
&#60;script type="text/javascript"&#62;
&#160;&#160;function RepairOlBug(){
&#160;&#160;&#160;&#160;l = element.getElementsByTagName("li");
&#160;&#160;&#160;&#160;for(c=0;c&#60;l.length;c++) {
&#160;&#160;&#160;&#160;&#160;&#160;l[c].value = c+1;
&#160;&#160;&#160;&#160;}
&#160;&#160;}
&#60;/script&#62;&lt;/code&gt;

It's not really a solution.
It's invalid CSS and it uses javascript.
Hmm now I think of it, it's a really sucky solution :D

greets dexus</description>
		<content:encoded><![CDATA[<p>I had this problem to.<br />
The way I fixed is was with a htc file.</p>
<p>You just put this in your CSS:<br />
<code>ol {<br />
&nbsp;&nbsp;behavior: <acronym title="Uniform Resource Locator">URL</acronym>("ol.htc");<br />
}</code></p>
<p>And you make a .htc file with this text inside:<br />
<code>&lt;attach event="ondocumentready" handler="RepairOlBug" /&gt;<br />
&lt;script type="text/javascript"&gt;<br />
&nbsp;&nbsp;function RepairOlBug(){<br />
&nbsp;&nbsp;&nbsp;&nbsp;l = element.getElementsByTagName("li");<br />
&nbsp;&nbsp;&nbsp;&nbsp;for(c=0;c&lt;l.length;c++) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;l[c].value = c+1;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;}<br />
&lt;/script&gt;</code></p>
<p>It&#8217;s not really a solution.<br />
It&#8217;s invalid <acronym title="Cascading Style Sheets">CSS</acronym> and it uses javascript.<br />
Hmm now I think of it, it&#8217;s a really sucky solution <img src='http://www.robertnyman.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>greets dexus</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-2459</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Thu, 05 Jan 2006 19:51:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-2459</guid>
		<description>Peter,

Thanks for the comment and for thinking of me!
I fixed the link in your first comment, by the way.

I think it depends on the usage. Knowing the number of items isn't really a flexible solution and most lists in web sites are created from dynamic content.

I think valid and lean HTML and JavaScript can be a valid solution if it has an acceptable fallback. It totally depends on how important the list is for the web site in question.</description>
		<content:encoded><![CDATA[<p>Peter,</p>
<p>Thanks for the comment and for thinking of me!<br />
I fixed the link in your first comment, by the way.</p>
<p>I think it depends on the usage. Knowing the number of items isn&#8217;t really a flexible solution and most lists in web sites are created from dynamic content.</p>
<p>I think valid and lean <acronym title="HyperText Markup Language">HTML</acronym> and JavaScript can be a valid solution if it has an acceptable fallback. It totally depends on how important the list is for the web site in question.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Uchytil</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-2458</link>
		<dc:creator>Peter Uchytil</dc:creator>
		<pubDate>Thu, 05 Jan 2006 17:49:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-2458</guid>
		<description>Grr. Messed up the link. It should have been:

&lt;a href="http://uk.builder.com/webdevelopment/design/0,39026630,39260473,00.htm" rel="nofollow"&gt;this&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Grr. Messed up the link. It should have been:</p>
<p><a href="http://uk.builder.com/webdevelopment/design/0,39026630,39260473,00.htm" rel="nofollow">this</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Uchytil</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-2457</link>
		<dc:creator>Peter Uchytil</dc:creator>
		<pubDate>Thu, 05 Jan 2006 17:48:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-2457</guid>
		<description>Robert, I just encountered the same issue with flaoting &lt;strong&gt;li&lt;/strong&gt;s. I did some more searching and ran across this article &lt;a href="http://uk.builder.com/webdevelopment/design/0,39026630,39260473,00.htm" rel="nofollow"&gt;Creating Multicolumn lists&lt;/a&gt;. It gives a couple options for achieving the effect. To work with browsers other than Firefox requires extra markup. I don't mind the markup, but these other methods require you to know the length of the list. I'm pulling info out of a database, so I was hoping to be able to use just straight &lt;strong&gt;li&lt;/strong&gt;s and be done with it.

Actually, I might do some page-load Javascript to rebuild a multi-column &lt;strong&gt;ul&lt;/strong&gt; for browsers other than Firefox. That way I can keep my HTML code simple. If the user doesn't have Javascript enabled, it won't be the end of the world since I'm just trying to display bullets. 

Anyway, I thought you might want to check that article out if you haven't already.</description>
		<content:encoded><![CDATA[<p>Robert, I just encountered the same issue with flaoting <strong>li</strong>s. I did some more searching and ran across this article <a href="http://uk.builder.com/webdevelopment/design/0,39026630,39260473,00.htm" rel="nofollow">Creating Multicolumn lists</a>. It gives a couple options for achieving the effect. To work with browsers other than Firefox requires extra markup. I don&#8217;t mind the markup, but these other methods require you to know the length of the list. I&#8217;m pulling info out of a database, so I was hoping to be able to use just straight <strong>li</strong>s and be done with it.</p>
<p>Actually, I might do some page-load Javascript to rebuild a multi-column <strong>ul</strong> for browsers other than Firefox. That way I can keep my <acronym title="HyperText Markup Language">HTML</acronym> code simple. If the user doesn&#8217;t have Javascript enabled, it won&#8217;t be the end of the world since I&#8217;m just trying to display bullets. </p>
<p>Anyway, I thought you might want to check that article out if you haven&#8217;t already.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-1405</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Tue, 25 Oct 2005 12:05:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2005/10/19/an-ieordered-list-challenge/#comment-1405</guid>
		<description>Lars,

Ah, interesting.
I'll send you an e-mail within a couple of minutes... :-)</description>
		<content:encoded><![CDATA[<p>Lars,</p>
<p>Ah, interesting.<br />
I&#8217;ll send you an e-mail within a couple of minutes&#8230; <img src='http://www.robertnyman.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>
