<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Free 2 Column Wordpress Theme - A Dream to Host</title>
	<link>http://www.artofblog.com/33-a-dream-to-host/</link>
	<description>everything you need to know about running a successful Wordpress blog</description>
	<pubDate>Tue, 13 May 2008 22:24:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Sun Tzu</title>
		<link>http://www.artofblog.com/33-a-dream-to-host/#comment-967</link>
		<dc:creator>Sun Tzu</dc:creator>
		<pubDate>Fri, 02 May 2008 22:44:15 +0000</pubDate>
		<guid>http://www.artofblog.com/33-a-dream-to-host/#comment-967</guid>
		<description>Add clear:left; to the main ID in your CSS file.

Replace it with:
#main {margin : 0 auto;padding:10px 0px 0px 0px;clear:left;}

I might add this to the official theme release since others might run into the same problem.</description>
		<content:encoded><![CDATA[<p>Add clear:left; to the main ID in your CSS file.</p>
<p>Replace it with:<br />
#main {margin : 0 auto;padding:10px 0px 0px 0px;clear:left;}</p>
<p>I might add this to the official theme release since others might run into the same problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesper Hultqvist</title>
		<link>http://www.artofblog.com/33-a-dream-to-host/#comment-966</link>
		<dc:creator>Jesper Hultqvist</dc:creator>
		<pubDate>Fri, 02 May 2008 22:40:25 +0000</pubDate>
		<guid>http://www.artofblog.com/33-a-dream-to-host/#comment-966</guid>
		<description>Great looking theme! One question though. Is is just on my computer the left column pushes the right column out of whack and in below the left column?  

Jes</description>
		<content:encoded><![CDATA[<p>Great looking theme! One question though. Is is just on my computer the left column pushes the right column out of whack and in below the left column?  </p>
<p>Jes</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sun Tzu</title>
		<link>http://www.artofblog.com/33-a-dream-to-host/#comment-947</link>
		<dc:creator>Sun Tzu</dc:creator>
		<pubDate>Wed, 26 Mar 2008 20:12:19 +0000</pubDate>
		<guid>http://www.artofblog.com/33-a-dream-to-host/#comment-947</guid>
		<description>find this line "And add a line similar to the following underneath that line" on this post:

http://blog.websitestyle.com/index.php/2008/02/29/using-wordpress-excerpts/
it gives you the code to add a read more line in your template
</description>
		<content:encoded><![CDATA[<p>find this line &#8220;And add a line similar to the following underneath that line&#8221; on this post:</p>
<p><a href="http://blog.websitestyle.com/index.php/2008/02/29/using-wordpress-excerpts/" rel="nofollow">http://blog.websitestyle.com/index.php/2008/02/29/using-wordpress-excerpts/</a><br />
it gives you the code to add a read more line in your template</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeff lyons</title>
		<link>http://www.artofblog.com/33-a-dream-to-host/#comment-946</link>
		<dc:creator>jeff lyons</dc:creator>
		<pubDate>Wed, 26 Mar 2008 18:52:05 +0000</pubDate>
		<guid>http://www.artofblog.com/33-a-dream-to-host/#comment-946</guid>
		<description>Thanks Sun Tzu, worked like a charm.

Last question... each excerpt ends with  […]. Is there any way to make this a link to the full post or replace with READ MORE&#62;

I ask this because I do a lot of usability work, and a good majority of new wordpress users don't realize they have to click on the top header Post Link to read the whole story. Some think the except is the whole story.

Especially for this style where the Header Post is not underlined as a link... the user should really have somewhere to click to proceed.

Again, thanks for your help!</description>
		<content:encoded><![CDATA[<p>Thanks Sun Tzu, worked like a charm.</p>
<p>Last question&#8230; each excerpt ends with  […]. Is there any way to make this a link to the full post or replace with READ MORE&gt;</p>
<p>I ask this because I do a lot of usability work, and a good majority of new wordpress users don&#8217;t realize they have to click on the top header Post Link to read the whole story. Some think the except is the whole story.</p>
<p>Especially for this style where the Header Post is not underlined as a link&#8230; the user should really have somewhere to click to proceed.</p>
<p>Again, thanks for your help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sun Tzu</title>
		<link>http://www.artofblog.com/33-a-dream-to-host/#comment-945</link>
		<dc:creator>Sun Tzu</dc:creator>
		<pubDate>Wed, 26 Mar 2008 18:17:31 +0000</pubDate>
		<guid>http://www.artofblog.com/33-a-dream-to-host/#comment-945</guid>
		<description>@Jeff: Thanks for the heads up. I fixed it in the version and updated the download.

To fix it on your end, go to archive.php and delete line 31 or line 33 - either of these 2:

&lt;?php the_excerpt() ?&gt;

&lt;?php the_content("&#187; Continue reading " . the_title('"','"',false), 0); ?&gt;

If you delete the first one (excerpt), your "more" tag will cut off the post (if you use more tags in your posts). If you delete the 2nd one (content), your excerpts will show.</description>
		<content:encoded><![CDATA[<p>@Jeff: Thanks for the heads up. I fixed it in the version and updated the download.</p>
<p>To fix it on your end, go to archive.php and delete line 31 or line 33 - either of these 2:</p>
<p>< ?php the_excerpt() ?></p>
<p>< ?php the_content("&raquo; Continue reading " . the_title('"','"',false), 0); ?></p>
<p>If you delete the first one (excerpt), your &#8220;more&#8221; tag will cut off the post (if you use more tags in your posts). If you delete the 2nd one (content), your excerpts will show.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeff</title>
		<link>http://www.artofblog.com/33-a-dream-to-host/#comment-944</link>
		<dc:creator>jeff</dc:creator>
		<pubDate>Wed, 26 Mar 2008 14:27:18 +0000</pubDate>
		<guid>http://www.artofblog.com/33-a-dream-to-host/#comment-944</guid>
		<description>Thanks Sun Tzu, much appreciated. One last question:

On my Categories page:

http://www.tinylyons.com/category/news/

the teaser text shows up first, followed by the entire post. I just want the teaser text (like a normal wordpress presentation), not the entire post.

How do I fix that? Again, I love this theme. Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks Sun Tzu, much appreciated. One last question:</p>
<p>On my Categories page:</p>
<p><a href="http://www.tinylyons.com/category/news/" rel="nofollow">http://www.tinylyons.com/category/news/</a></p>
<p>the teaser text shows up first, followed by the entire post. I just want the teaser text (like a normal wordpress presentation), not the entire post.</p>
<p>How do I fix that? Again, I love this theme. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sun Tzu</title>
		<link>http://www.artofblog.com/33-a-dream-to-host/#comment-943</link>
		<dc:creator>Sun Tzu</dc:creator>
		<pubDate>Tue, 25 Mar 2008 17:48:36 +0000</pubDate>
		<guid>http://www.artofblog.com/33-a-dream-to-host/#comment-943</guid>
		<description>The Subscribe block is there if you don't have widgets in your sidebar, but disappears if you don't (in case people don't want it there). You can grab the code from the sidebar file and place it in a text widget manually.</description>
		<content:encoded><![CDATA[<p>The Subscribe block is there if you don&#8217;t have widgets in your sidebar, but disappears if you don&#8217;t (in case people don&#8217;t want it there). You can grab the code from the sidebar file and place it in a text widget manually.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeff</title>
		<link>http://www.artofblog.com/33-a-dream-to-host/#comment-942</link>
		<dc:creator>jeff</dc:creator>
		<pubDate>Tue, 25 Mar 2008 17:19:17 +0000</pubDate>
		<guid>http://www.artofblog.com/33-a-dream-to-host/#comment-942</guid>
		<description>LOVE the simple layout, thanks. How do you get the SUBSCRIBe widget to appear? I don't see it listed, please advise. thx, Jeff</description>
		<content:encoded><![CDATA[<p>LOVE the simple layout, thanks. How do you get the SUBSCRIBe widget to appear? I don&#8217;t see it listed, please advise. thx, Jeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://www.artofblog.com/33-a-dream-to-host/#comment-912</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Mon, 11 Feb 2008 21:54:18 +0000</pubDate>
		<guid>http://www.artofblog.com/33-a-dream-to-host/#comment-912</guid>
		<description>After running a very slow template for a while, I decided to go on the hunt for a fast, clean, SEO, and easily customizable template that I could use.

After sifting through a bunch of rubbish, I'm convinced this one is by far the best! I'm yet to have a good go at playing with it, but have loaded it and love it. The coding is stripped right back to the bare essentials meaning it's going to clearly be a breeze to play with.

Thanks for your efforts and this offering to the world of blogging. I appreciate it.</description>
		<content:encoded><![CDATA[<p>After running a very slow template for a while, I decided to go on the hunt for a fast, clean, SEO, and easily customizable template that I could use.</p>
<p>After sifting through a bunch of rubbish, I&#8217;m convinced this one is by far the best! I&#8217;m yet to have a good go at playing with it, but have loaded it and love it. The coding is stripped right back to the bare essentials meaning it&#8217;s going to clearly be a breeze to play with.</p>
<p>Thanks for your efforts and this offering to the world of blogging. I appreciate it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sun Tzu</title>
		<link>http://www.artofblog.com/33-a-dream-to-host/#comment-909</link>
		<dc:creator>Sun Tzu</dc:creator>
		<pubDate>Fri, 08 Feb 2008 15:18:36 +0000</pubDate>
		<guid>http://www.artofblog.com/33-a-dream-to-host/#comment-909</guid>
		<description>To pad the images you can go into code view and put in the following code within the img tag:

for left aligned images:
style="padding:0 10px 10px 0;border:0"

for right aligned images:
style="padding: 0 0 10px 10px;border:0"

That's one way to add padding</description>
		<content:encoded><![CDATA[<p>To pad the images you can go into code view and put in the following code within the img tag:</p>
<p>for left aligned images:<br />
style=&#8221;padding:0 10px 10px 0;border:0&#8243;</p>
<p>for right aligned images:<br />
style=&#8221;padding: 0 0 10px 10px;border:0&#8243;</p>
<p>That&#8217;s one way to add padding</p>
]]></content:encoded>
	</item>
</channel>
</rss>
