<?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: Thumbnail Based Archives</title>
	<atom:link href="http://digwp.com/2010/07/thumbnail-based-archives/feed/" rel="self" type="application/rss+xml" />
	<link>http://digwp.com/2010/07/thumbnail-based-archives/</link>
	<description>Take your WordPress skills to the next level.</description>
	<lastBuildDate>Sat, 11 Feb 2012 16:22:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Chris Coyier</title>
		<link>http://digwp.com/2010/07/thumbnail-based-archives/#comment-7404</link>
		<dc:creator>Chris Coyier</dc:creator>
		<pubDate>Wed, 04 Aug 2010 23:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=2604#comment-7404</guid>
		<description>I do have JavaScript based horizontal mousewheel scrolling in there. It works great in Firefox, but I just checked WebKit and for whatever reason it doesn&#039;t work. Not sure if that&#039;s a limitation of the plugin or if I screwed something up. 

And regarding width, the whole point of using TD&#039;s is because they will not wrap in a table row, so you don&#039;t need to give the body an explicit width, it will just grow horizontally as needed.</description>
		<content:encoded><![CDATA[<p>I do have JavaScript based horizontal mousewheel scrolling in there. It works great in Firefox, but I just checked WebKit and for whatever reason it doesn&#8217;t work. Not sure if that&#8217;s a limitation of the plugin or if I screwed something up. </p>
<p>And regarding width, the whole point of using TD&#8217;s is because they will not wrap in a table row, so you don&#8217;t need to give the body an explicit width, it will just grow horizontally as needed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://digwp.com/2010/07/thumbnail-based-archives/#comment-7402</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Wed, 04 Aug 2010 22:29:38 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=2604#comment-7402</guid>
		<description>Cool post Chris,

I think the only thing to make this better would be to implement the horizontal scrolling plugin. All you would need is to link to &lt;a href=&quot;http://deanoakley.com/js/thw.js&quot; rel=&quot;nofollow&quot;&gt;http://deanoakley.com/js/thw.js&lt;/a&gt; (he seems to be the only one with a recent copy i can find.) Also to handle the fact that there is a dynamic number of posts, just call 

&lt;code&gt;var TD=$(&#039;TD&#039;);
$(&#039;BODY&#039;).width(TD.length * TD.eq(0).width());&lt;/code&gt;

I tested it out on your site using Chrome&#039;s dev tools. Totally gives it that extra kick.&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Cool post Chris,</p>
<p>I think the only thing to make this better would be to implement the horizontal scrolling plugin. All you would need is to link to <a href="http://deanoakley.com/js/thw.js" rel="nofollow">http://deanoakley.com/js/thw.js</a> (he seems to be the only one with a recent copy i can find.) Also to handle the fact that there is a dynamic number of posts, just call </p>
<p><pre><code>var TD=$('TD');
$('BODY').width(TD.length * TD.eq(0).width());</code></pre></p>
<p>I tested it out on your site using Chrome&#8217;s dev tools. Totally gives it that extra kick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nitin</title>
		<link>http://digwp.com/2010/07/thumbnail-based-archives/#comment-7117</link>
		<dc:creator>Nitin</dc:creator>
		<pubDate>Thu, 29 Jul 2010 15:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=2604#comment-7117</guid>
		<description>Thanks Chris,

I have been thinking about purchasing the book for quite sometime now. You gave me a reason enough.</description>
		<content:encoded><![CDATA[<p>Thanks Chris,</p>
<p>I have been thinking about purchasing the book for quite sometime now. You gave me a reason enough.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Coyier</title>
		<link>http://digwp.com/2010/07/thumbnail-based-archives/#comment-7109</link>
		<dc:creator>Chris Coyier</dc:creator>
		<pubDate>Thu, 29 Jul 2010 12:22:17 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=2604#comment-7109</guid>
		<description>In the book, I suggest using custom fields for removing the sidebar. In all your templates where you output the sidebar, wrap it in a conditional tag that looks for the custom field `noSidebar`. If it&#039;s present, then don&#039;t output it. That&#039;s the clean way that would save bandwidth and also hide it from search engines.</description>
		<content:encoded><![CDATA[<p>In the book, I suggest using custom fields for removing the sidebar. In all your templates where you output the sidebar, wrap it in a conditional tag that looks for the custom field `noSidebar`. If it&#8217;s present, then don&#8217;t output it. That&#8217;s the clean way that would save bandwidth and also hide it from search engines.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nitin</title>
		<link>http://digwp.com/2010/07/thumbnail-based-archives/#comment-7096</link>
		<dc:creator>Nitin</dc:creator>
		<pubDate>Thu, 29 Jul 2010 05:29:30 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=2604#comment-7096</guid>
		<description>Hi Chris,

This is not related to this post, it rather relates to http://digwp.com/2010/02/custom-css-per-post/. Since in my opinion, this was not as big an issues that I reach you via the contact form, I am seeking your guidance here itself

If I want to remove a sidebar I can use #sidebar {display:none} and #content {width:100%} Essentially I am hiding my sidebar from humans, search engines can see it. We can also see it if we open the source files. Can there be any penalisation by search engines for this? 

Needless to say, my understanding of css &amp; stuff is fairly limited. I just played a bit in Firebug.

I am sorry of putting a totally unrealted question, but I seek your guidance. Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Chris,</p>
<p>This is not related to this post, it rather relates to <a href="http://digwp.com/2010/02/custom-css-per-post/" rel="nofollow">http://digwp.com/2010/02/custom-css-per-post/</a>. Since in my opinion, this was not as big an issues that I reach you via the contact form, I am seeking your guidance here itself</p>
<p>If I want to remove a sidebar I can use #sidebar {display:none} and #content {width:100%} Essentially I am hiding my sidebar from humans, search engines can see it. We can also see it if we open the source files. Can there be any penalisation by search engines for this? </p>
<p>Needless to say, my understanding of css &amp; stuff is fairly limited. I just played a bit in Firebug.</p>
<p>I am sorry of putting a totally unrealted question, but I seek your guidance. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julian</title>
		<link>http://digwp.com/2010/07/thumbnail-based-archives/#comment-7057</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Wed, 28 Jul 2010 00:31:51 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=2604#comment-7057</guid>
		<description>cool man
then, every post should be have at least one image attachment, isn&#039;t it?</description>
		<content:encoded><![CDATA[<p>cool man<br />
then, every post should be have at least one image attachment, isn&#8217;t it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicolas</title>
		<link>http://digwp.com/2010/07/thumbnail-based-archives/#comment-7028</link>
		<dc:creator>Nicolas</dc:creator>
		<pubDate>Tue, 27 Jul 2010 09:00:55 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=2604#comment-7028</guid>
		<description>There&#039;s a Plugin by Vladimir Prelovac which does a similar archives style. And I would think it could be fairly easy to integrate the thumbnail stuff in there. Check it out at http://www.prelovac.com/vladimir/wordpress-plugins/snazzy-archives</description>
		<content:encoded><![CDATA[<p>There&#8217;s a Plugin by Vladimir Prelovac which does a similar archives style. And I would think it could be fairly easy to integrate the thumbnail stuff in there. Check it out at <a href="http://www.prelovac.com/vladimir/wordpress-plugins/snazzy-archives" rel="nofollow">http://www.prelovac.com/vladimir/wordpress-plugins/snazzy-archives</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://digwp.com/2010/07/thumbnail-based-archives/#comment-7011</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 26 Jul 2010 21:48:39 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=2604#comment-7011</guid>
		<description>Chris, you keep pumping out these great ideas don&#039;t you!
So far this wouldn&#039;t have really fit with any of the WP sites I have designed, but I am SO going to try and work it into the next one!

Awesome tut.</description>
		<content:encoded><![CDATA[<p>Chris, you keep pumping out these great ideas don&#8217;t you!<br />
So far this wouldn&#8217;t have really fit with any of the WP sites I have designed, but I am SO going to try and work it into the next one!</p>
<p>Awesome tut.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony</title>
		<link>http://digwp.com/2010/07/thumbnail-based-archives/#comment-7004</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Mon, 26 Jul 2010 19:13:09 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=2604#comment-7004</guid>
		<description>Seems more appropriate for the related posts section instead...</description>
		<content:encoded><![CDATA[<p>Seems more appropriate for the related posts section instead&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hassan</title>
		<link>http://digwp.com/2010/07/thumbnail-based-archives/#comment-7002</link>
		<dc:creator>Hassan</dc:creator>
		<pubDate>Mon, 26 Jul 2010 18:32:04 +0000</pubDate>
		<guid isPermaLink="false">http://digwp.com/?p=2604#comment-7002</guid>
		<description>I had the problem of how to arrange elements horizontally without specifying a width. Never thought of using tables for this. Works awesome. Thank you Chris!</description>
		<content:encoded><![CDATA[<p>I had the problem of how to arrange elements horizontally without specifying a width. Never thought of using tables for this. Works awesome. Thank you Chris!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

