<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SimcoMedia Professional Web Design &#187; ordered list css</title>
	<atom:link href="http://www.simcomedia.com/tag/ordered-list-css/feed" rel="self" type="application/rss+xml" />
	<link>http://www.simcomedia.com</link>
	<description>Custom Web Designs And Ecommerce Specialists</description>
	<lastBuildDate>Sun, 08 Jan 2012 21:02:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Ordered List Styling Using CSS</title>
		<link>http://www.simcomedia.com/ordered-list-styling-using-css</link>
		<comments>http://www.simcomedia.com/ordered-list-styling-using-css#comments</comments>
		<pubDate>Sat, 21 Nov 2009 20:00:25 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css ordered lists]]></category>
		<category><![CDATA[ordered list css]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=531</guid>
		<description><![CDATA[We&#8217;ve addressed unordered lists but haven&#8217;t really done much with the ordered ones. What&#8217;s the difference? Well, unordered lists use bullets and ordered list use numbers. They both use the &#60;li&#62; tag but start differently with the unordered being &#60;ul&#62; while the ordered is &#60;ol&#62;. Without using any styling for the ordered list you get [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve addressed unordered lists but haven&#8217;t really done much with the ordered ones. What&#8217;s the difference? Well, unordered lists use bullets and ordered list use numbers. They both use the &lt;li&gt; tag but start differently with the unordered being &lt;ul&gt; while the ordered is &lt;ol&gt;. Without using any styling for the ordered list you get that ugly set of numbers that label each list item. Using a little bit of styling produces much better results.<span id="more-531"></span></p>
<p>Check it out &#8211; this is standard list display:</p>
<ol>
<li>blah blah</li>
<li>blah blah blahhhh</li>
<li>blah blah blahhhhhh</li>
</ol>
<p>Now, with some style use in our CSS we can come up with something like this:</p>
<ol style="font: italic 1em Georgia, Times, serif; color: #999;">
<li>
<p style="font: normal .8em Arial, Helvetica, sans-serif; color: #000000;">blah blah</p>
</li>
<li>
<p style="font: normal .8em Arial, Helvetica, sans-serif; color: #000000;">blah blahhh</p>
</li>
<li>
<p style="font: normal .8em Arial, Helvetica, sans-serif; color: #000000;">blah blah blahhhhhhhhhh</p>
</li>
</ol>
<p>Here&#8217;s the CSS:</p>
<pre class="brush:[css]">ol {

font: italic 1em Georgia, Times, serif;

color: #999999;

}

ol p {

font: normal .8em Arial, Helvetica, sans-serif;

color: #000000;

}</pre>
<p>And the HTML:</p>
<pre class="brush:[html]">
<ol>
<li>

This is line one</li>
<li>

Here is line two</li>
<li>

And last line</li>
</ol>
</pre>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.simcomedia.com/ordered-list-styling-using-css" target="_blank"><img src="http://www.simcomedia.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.simcomedia.com/ordered-list-styling-using-css" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/ordered-list-styling-using-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

