<?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>Max Design &#187; Q and A</title>
	<atom:link href="http://www.maxdesign.com.au/category/q-and-a/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.maxdesign.com.au</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 01:08:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Valid replacement for ol type=&#8221;a&#8221;</title>
		<link>http://www.maxdesign.com.au/2008/09/16/valid-replacement-for-ol-type/</link>
		<comments>http://www.maxdesign.com.au/2008/09/16/valid-replacement-for-ol-type/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 02:06:54 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Q and A]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web standards]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[valid]]></category>

		<guid isPermaLink="false">http://www.maxdesign.com.au/?p=428</guid>
		<description><![CDATA[I was recently sent this question: I have used &#60;ol type=&#8221;a&#8221;&#62; in my markup. The W3C validator tells me that this is invalid. How can I change the &#8220;type&#8221; of an ordered list&#8217;s the list without using this attribute? Answer: The type attribute associated with the &#60;ul&#62; , &#60;ol&#62; and &#60;li&#62; has been deprecated as [...]]]></description>
			<content:encoded><![CDATA[<p>
	I was recently sent this question:
</p>
<blockquote>
<p>
		I have used &lt;ol type=&#8221;a&#8221;&gt; in my markup. The W3C validator tells me that this is invalid. How can I change the &#8220;type&#8221; of an ordered list&#8217;s the list without using this attribute?
	</p>
</blockquote>
<h4>
	Answer:<br />
</h4>
<p>
	The type attribute associated with the &lt;ul&gt; , &lt;ol&gt; and &lt;li&gt; has been <a href="http://www.w3.org/TR/html401/struct/lists.html#h-10.2">deprecated </a> as it is considered style information. This means it should be achieved using CSS rather than markup.
</p>
<p>
	Ideally, authors should use the <a href="http://www.w3.org/TR/CSS2/generate.html#lists">list-style-type property</a> which can specify a wide range of options including:
</p>
<ul>
<li>disc</li>
<li>circle</li>
<li>square</li>
<li>decimal</li>
<li>decimal-leading-zero</li>
<li>lower-roman</li>
<li>upper-roman</li>
<li>lower-greek</li>
<li>lower-alpha</li>
<li>lower-latin</li>
<li>upper-alpha</li>
<li>upper-latin</li>
<li>hebrew</li>
<li>armenian</li>
<li>georgian</li>
<li>cjk-ideographic</li>
<li>hiragana</li>
<li>katakana</li>
<li>hiragana-iroha</li>
<li>katakana-iroha </li>
</ul>
<p>
	So, the preferred markup would be something like:
</p>
<h4>
	HTML:<br />
</h4>
<p class="codesample">
	<code> &lt;ol <del>class="lower-alpha"</del> <strong>class="class-name"</strong>&gt; </code>
</p>
<h4>
	CSS:<br />
</h4>
<p class="codesample">
	<code> .class-name { <strong>list-style-type: lower-alpha;</strong> } </code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxdesign.com.au/2008/09/16/valid-replacement-for-ol-type/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Google and &#8220;noodp&#8221;</title>
		<link>http://www.maxdesign.com.au/2008/08/09/google-noodp/</link>
		<comments>http://www.maxdesign.com.au/2008/08/09/google-noodp/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 00:29:39 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Q and A]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[noodp]]></category>

		<guid isPermaLink="false">http://www.maxdesign.com.au/?p=415</guid>
		<description><![CDATA[I was recently sent this question: I noticed that some sites use the code below. What is this used for? &#60;meta name="robots" content="noodp" /&#62; Answer: First of all, this is a meta element. When used, it must be placed in the head of html documents. The meta element is used to provide meta information about [...]]]></description>
			<content:encoded><![CDATA[<h3>I was recently sent this question:</h3>
<blockquote><p>I noticed that some sites use the code below. What is this used for?</p>
<p><code>&lt;meta name="robots" content="noodp" /&gt;</code></p>
</blockquote>
<h3>Answer:</h3>
<p>First of all, this is a <a href="http://www.w3.org/TR/html401/struct/global.html#h-7.4.4.2">meta</a> element. When used, it must be placed in the head of html documents. The meta element is used to provide meta information about a document. The meta element must have a property (name) and a value (content).</p>
<p>In this case, the value (content) is &#8220;noodp&#8221; &#8211; which stands for &#8220;No Open Directory Project&#8221;.</p>
<p>But what the hell does this mean?</p>
<p>Google automatically creates the title and description (or &#8220;snippet&#8221;) for each site &#8211; using the content of a page as well as references to the page that appear on other sites.</p>
<p>Google sometimes users descriptions within the <a href="http://www.dmoz.org/">Open Director Project</a> to generate &#8220;snippets&#8221;. But what if you don&#8217;t like the snippet that is being used?</p>
<p>To prevent all search engines (that support the meta tag) from using information from the Open Directory Project for the page&#8217;s description, you can use the following:</p>
<h4>HTML:</h4>
<p class="codesample"><code> &lt;meta name="robots" content="noodp"&gt; </code></p>
<h4>XHTML:</h4>
<p class="codesample"><code> &lt;meta name="robots" content="noodp" /&gt; </code></p>
<p>To specifically prevent Google from using information from the Open Directory Project for a page&#8217;s description, you can use the following:</p>
<h4>HTML:</h4>
<p class="codesample"><code> &lt;meta name="googlebot" content="noodp"&gt; </code></p>
<h4>XHTML:</h4>
<p class="codesample"><code> &lt;meta name="googlebot" content="noodp" /&gt; </code></p>
<h3>Further reading:</h3>
<ul>
<li><a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=35264">How do I change my site&#8217;s title and description?</a></li>
<li><a href="http://sitemaps.blogspot.com/2006/07/more-control-over-page-snippets.html">More control over page snippets</a></li>
</ul>
<p>So, do you use this on any of your sites? Do you find it necessary any more?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxdesign.com.au/2008/08/09/google-noodp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

