<?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: CSS Diseases: Divitis &amp; Classitis</title>
	<atom:link href="http://www.onyx-design.net/featured/css-diseases-divitis-classitis/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.onyx-design.net/featured/css-diseases-divitis-classitis/</link>
	<description>A weblog about webdesign, webdevelopment, css, php and other webrelated topics.</description>
	<lastBuildDate>Mon, 30 Nov 2009 08:26:29 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Joomla panel</title>
		<link>http://www.onyx-design.net/featured/css-diseases-divitis-classitis/comment-page-1/#comment-710</link>
		<dc:creator>Joomla panel</dc:creator>
		<pubDate>Wed, 28 Jan 2009 16:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.onyx-design.net/weblog2/css/css-diseases-divitis-classitis/#comment-710</guid>
		<description>Iam Agree with Fabian.. that code more semantic and  i was use it into my Joomla cms site template.</description>
		<content:encoded><![CDATA[<p>Iam Agree with Fabian.. that code more semantic and  i was use it into my Joomla cms site template.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Websites you shouldn’t have missed in May 2008 &#124; Noupe</title>
		<link>http://www.onyx-design.net/featured/css-diseases-divitis-classitis/comment-page-1/#comment-603</link>
		<dc:creator>Websites you shouldn’t have missed in May 2008 &#124; Noupe</dc:creator>
		<pubDate>Thu, 30 Oct 2008 05:15:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.onyx-design.net/weblog2/css/css-diseases-divitis-classitis/#comment-603</guid>
		<description>[...] 18- CSS Diseases: Divitis &amp; Classitis [...]</description>
		<content:encoded><![CDATA[<p>[...] 18- <acronym title="Cascading Style Sheets">CSS</acronym> Diseases: Divitis &#38; Classitis [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DON&#8217;T MEASURE: The Best Design Articles from May 2008 &#124; Dalton Trent's Blog</title>
		<link>http://www.onyx-design.net/featured/css-diseases-divitis-classitis/comment-page-1/#comment-502</link>
		<dc:creator>DON&#8217;T MEASURE: The Best Design Articles from May 2008 &#124; Dalton Trent's Blog</dc:creator>
		<pubDate>Tue, 15 Jul 2008 01:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.onyx-design.net/weblog2/css/css-diseases-divitis-classitis/#comment-502</guid>
		<description>[...] 18- CSS Diseases: Divitis &amp; Classitis [...]</description>
		<content:encoded><![CDATA[<p>[...] 18- <acronym title="Cascading Style Sheets">CSS</acronym> Diseases: Divitis &amp; Classitis [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DON’T MISS: The Best Design Articles from May 2008 &#124; Dalton Trent's Blog</title>
		<link>http://www.onyx-design.net/featured/css-diseases-divitis-classitis/comment-page-1/#comment-500</link>
		<dc:creator>DON’T MISS: The Best Design Articles from May 2008 &#124; Dalton Trent's Blog</dc:creator>
		<pubDate>Tue, 08 Jul 2008 10:00:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.onyx-design.net/weblog2/css/css-diseases-divitis-classitis/#comment-500</guid>
		<description>[...] 18- CSS Diseases: Divitis &amp; Classitis [...]</description>
		<content:encoded><![CDATA[<p>[...] 18- <acronym title="Cascading Style Sheets">CSS</acronym> Diseases: Divitis &amp; Classitis [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabian</title>
		<link>http://www.onyx-design.net/featured/css-diseases-divitis-classitis/comment-page-1/#comment-426</link>
		<dc:creator>Fabian</dc:creator>
		<pubDate>Tue, 03 Jun 2008 06:52:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.onyx-design.net/weblog2/css/css-diseases-divitis-classitis/#comment-426</guid>
		<description>There is a lot of discussion whether you should use CSS Image Replacement. I don&#039;t use it on this website, but I have been using it on other sites and I have no bad experience with it.

But if you really don&#039;t want to use image replacement, you could also just change the &lt;div&gt; to a &lt;h1&gt; (or &lt;h2&gt;).
Instead of this:
&lt;code&gt;
&lt;div id=&quot;header&gt;
&lt;img src=&quot;logo.jpg&quot; alt=&quot;My site name&quot; /&gt;
&lt;/div&gt;
&lt;/code&gt;
Use this:
&lt;code&gt;
&lt;h1 id=&quot;header&gt;
&lt;img src=&quot;logo.jpg&quot; alt=&quot;My site name&quot; /&gt;
&lt;/h1&gt;
&lt;/code&gt;

Does everyone agree that this is more semantic?</description>
		<content:encoded><![CDATA[<p>There is a lot of discussion whether you should use <acronym title="Cascading Style Sheets">CSS</acronym> Image Replacement. I don&#39;t use it on this website, but I have been using it on other sites and I have no bad experience with it.</p>
<p>But if you really don&#39;t want to use image replacement, you could also just change the &lt;div&gt; to a &lt;h1&gt; (or &lt;h2&gt;).<br />
Instead of this:<br />
<code><br />
&lt;div id=&quot;header&gt;<br />
&lt;img src=&quot;logo.jpg&quot; alt=&quot;My site name&quot; /&gt;<br />
&lt;/div&gt;<br />
</code><br />
Use this:<br />
<code><br />
&lt;h1 id=&quot;header&gt;<br />
&lt;img src=&quot;logo.jpg&quot; alt=&quot;My site name&quot; /&gt;<br />
&lt;/h1&gt;<br />
</code></p>
<p>Does everyone agree that this is more semantic?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve O</title>
		<link>http://www.onyx-design.net/featured/css-diseases-divitis-classitis/comment-page-1/#comment-420</link>
		<dc:creator>Steve O</dc:creator>
		<pubDate>Mon, 02 Jun 2008 17:54:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.onyx-design.net/weblog2/css/css-diseases-divitis-classitis/#comment-420</guid>
		<description>&lt;a href=&quot;http://www.456bereastreet.com/archive/200510/google_seo_and_using_css_to_hide_text/&quot; rel=&quot;nofollow&quot;&gt;Google&#039;s stance on hiding text...&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p><a href="http://www.456bereastreet.com/archive/200510/google_seo_and_using_css_to_hide_text/" rel="nofollow">Google&#8217;s stance on hiding text&#8230;</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Best Design Articles from May 2008</title>
		<link>http://www.onyx-design.net/featured/css-diseases-divitis-classitis/comment-page-1/#comment-413</link>
		<dc:creator>Best Design Articles from May 2008</dc:creator>
		<pubDate>Mon, 02 Jun 2008 10:16:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.onyx-design.net/weblog2/css/css-diseases-divitis-classitis/#comment-413</guid>
		<description>[...] 18- CSS Diseases: Divitis &amp; Classitis [...]</description>
		<content:encoded><![CDATA[<p>[...] 18- <acronym title="Cascading Style Sheets">CSS</acronym> Diseases: Divitis &amp; Classitis [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaik</title>
		<link>http://www.onyx-design.net/featured/css-diseases-divitis-classitis/comment-page-1/#comment-412</link>
		<dc:creator>Jaik</dc:creator>
		<pubDate>Mon, 02 Jun 2008 08:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.onyx-design.net/weblog2/css/css-diseases-divitis-classitis/#comment-412</guid>
		<description>Googlebot *can* read CSS AFAIK. And for that reason, the method that Rich suggests is bad practise as &quot;display:none;&quot; is, from a content point of view, removing the element from the page.

As for whether the H1 should be the name of the site or not is an area of some debate. In every page other than the homepage, should the H1 not be the title of the current page?</description>
		<content:encoded><![CDATA[<p>Googlebot *can* read <acronym title="Cascading Style Sheets">CSS</acronym> <acronym title="As far as I know">AFAIK</acronym>. And for that reason, the method that Rich suggests is bad practise as &#8220;display:none;&#8221; is, from a content point of view, removing the element from the page.</p>
<p>As for whether the H1 should be the name of the site or not is an area of some debate. In every page other than the homepage, should the H1 not be the title of the current page?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Websites you shouldn’t have missed in May 2008</title>
		<link>http://www.onyx-design.net/featured/css-diseases-divitis-classitis/comment-page-1/#comment-408</link>
		<dc:creator>Websites you shouldn’t have missed in May 2008</dc:creator>
		<pubDate>Sun, 01 Jun 2008 20:52:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.onyx-design.net/weblog2/css/css-diseases-divitis-classitis/#comment-408</guid>
		<description>[...] 18- CSS Diseases: Divitis &amp; Classitis [...]</description>
		<content:encoded><![CDATA[<p>[...] 18- <acronym title="Cascading Style Sheets">CSS</acronym> Diseases: Divitis &#38; Classitis [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos Eduardo</title>
		<link>http://www.onyx-design.net/featured/css-diseases-divitis-classitis/comment-page-1/#comment-398</link>
		<dc:creator>Carlos Eduardo</dc:creator>
		<pubDate>Fri, 30 May 2008 17:50:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.onyx-design.net/weblog2/css/css-diseases-divitis-classitis/#comment-398</guid>
		<description>I use the text-indent technique for image replacement too. We dont need to use a span just to hide the text...

Image replacement using negative values isn&#039;t a problem :)</description>
		<content:encoded><![CDATA[<p>I use the text-indent technique for image replacement too. We dont need to use a span just to hide the text&#8230;</p>
<p>Image replacement using negative values isn&#8217;t a problem <img src='http://www.onyx-design.net/weblog2/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
