<?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: Springer Theme Feedback</title>
	<atom:link href="http://www.paradoxdruid.com/archives/249/feed" rel="self" type="application/rss+xml" />
	<link>http://www.paradoxdruid.com/archives/249</link>
	<description>Yet Another Community Weblog</description>
	<lastBuildDate>Wed, 01 Feb 2012 06:15:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Misty</title>
		<link>http://www.paradoxdruid.com/archives/249/comment-page-1#comment-1429</link>
		<dc:creator>Misty</dc:creator>
		<pubDate>Thu, 30 Mar 2006 22:03:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.paradoxdruid.com/archives/249#comment-1429</guid>
		<description>Hi!  Maybe I&#039;m a moron, but my left and right sidebars don&#039;t show up!  I took out your cat=2 and cat=-2 from the left.php and index.php thinking that would fix it, but no dice.  Any help is appreciated!  I love the theme!</description>
		<content:encoded><![CDATA[<p>Hi!  Maybe I&#8217;m a moron, but my left and right sidebars don&#8217;t show up!  I took out your cat=2 and cat=-2 from the left.php and index.php thinking that would fix it, but no dice.  Any help is appreciated!  I love the theme!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paradoxdruid</title>
		<link>http://www.paradoxdruid.com/archives/249/comment-page-1#comment-1362</link>
		<dc:creator>Paradoxdruid</dc:creator>
		<pubDate>Sun, 12 Feb 2006 18:19:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.paradoxdruid.com/archives/249#comment-1362</guid>
		<description>Sure enough, renee--  Just replace the file bellis.jpg in the theme directory with an image of your own.  Either rename it bellis.jpg or edit the style.css file for the header section, to reflect the new image name.</description>
		<content:encoded><![CDATA[<p>Sure enough, renee&#8211;  Just replace the file bellis.jpg in the theme directory with an image of your own.  Either rename it bellis.jpg or edit the style.css file for the header section, to reflect the new image name.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: renee</title>
		<link>http://www.paradoxdruid.com/archives/249/comment-page-1#comment-1361</link>
		<dc:creator>renee</dc:creator>
		<pubDate>Sat, 11 Feb 2006 18:44:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.paradoxdruid.com/archives/249#comment-1361</guid>
		<description>hi-- is there any way i can change the header pic of that plant to my own image? 
Thanks!</description>
		<content:encoded><![CDATA[<p>hi&#8211; is there any way i can change the header pic of that plant to my own image?<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paradoxdruid</title>
		<link>http://www.paradoxdruid.com/archives/249/comment-page-1#comment-1360</link>
		<dc:creator>Paradoxdruid</dc:creator>
		<pubDate>Tue, 07 Feb 2006 03:55:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.paradoxdruid.com/archives/249#comment-1360</guid>
		<description>Hey Gina-

I don&#039;t know how comfortable you are with the Wordpress template tags ( http://codex.wordpress.org is an invaluable help), but what you want is certainly achievable.  Set the linkdump to display the same category as the main column (at the start of the linkdump loop in left.php , change cat=&quot;2&quot; to cat=&quot;1&quot;).  Then, edit the linkdump loop to display only the title (perhaps link it with the permalink).

That would look something like this (removing all of the $ (dollar signs) I inserted to make it display):
&lt;code&gt;
&lt; $h3&gt;Linkdump
&lt; $!-- insert The Loop for Linkdump --&gt;
&lt; ?php query_posts(&#039;cat=1&amp;showposts=9&#039;); ?&gt;&lt; ?php if (have_posts()) : ?&gt;&lt; ?php while (have_posts()) : the_post(); ?&gt;
		&lt; $span id=&quot;post-&lt; ?php the_ID(); ?&gt;&quot;&gt;&lt; $/span&gt;&lt; $div class=&quot;entry&quot;&gt;&lt; $span class=&quot;entry-lefttitle&quot;&gt;&lt; $a href=&quot;&lt; ?php the_permalink(); ?&gt;&lt; ?php the_title(); ?&gt;&lt; $/a&gt;&lt; $/span&gt;
			&lt; $/div&gt;
            &lt; $/div&gt;&lt; $br /&gt;
	
		&lt; ?php endwhile; ?&gt;

		&lt; $!-- &lt;$div class=&quot;navigation&quot;&gt;
			&lt; $div class=&quot;alignleft&quot;&gt;&lt; ?php next_posts_link(&#039;&#171; Previous Entries&#039;) ?&gt;&lt; $/div&gt;
			&lt; $div class=&quot;alignright&quot;&gt;&lt; ?php previous_posts_link(&#039;Next Entries &#187;&#039;) ?&gt;&lt; $/div&gt;
		&lt; $/div&gt; --&gt;
		
	&lt; ?php else : ?&gt;

		&lt; $h2 class=&quot;center&quot;&gt;Not Found&lt; $/h2&gt;
		&lt; $p class=&quot;center&quot;&gt;Sorry, but you are looking for something that isn&#039;t here.&lt; $/p&gt;
		&lt; ?php include (TEMPLATEPATH . &quot;/searchform.php&quot;); ?&gt;

	&lt; ?php endif; ?&gt;


&lt; $!-- end The Loop for Linkdump --&gt;
&lt;/code&gt;

Good luck!</description>
		<content:encoded><![CDATA[<p>Hey Gina-</p>
<p>I don&#8217;t know how comfortable you are with the WordPress template tags ( <a href="http://codex.wordpress.org" rel="nofollow" rel="nofollow" target="_blank"></a><a href='http://codex.wordpress.org' rel="nofollow" target="_blank">http://codex.wordpress.org</a> is an invaluable help), but what you want is certainly achievable.  Set the linkdump to display the same category as the main column (at the start of the linkdump loop in left.php , change cat=&#8221;2&#8243; to cat=&#8221;1&#8243;).  Then, edit the linkdump loop to display only the title (perhaps link it with the permalink).</p>
<p>That would look something like this (removing all of the $ (dollar signs) I inserted to make it display):<br />
<code><br />
< $h3>Linkdump<br />
< $!-- insert The Loop for Linkdump --><br />
< ?php query_posts('cat=1&#038;showposts=9'); ?>< ?php if (have_posts()) : ?>< ?php while (have_posts()) : the_post(); ?><br />
		< $span id="post-< ?php the_ID(); ?>">< $/span>< $div class="entry">< $span class="entry-lefttitle">< $a href="< ?php the_permalink(); ?>< ?php the_title(); ?>< $/a>< $/span><br />
			< $/div><br />
            < $/div>< $br /></p>
<p>		< ?php endwhile; ?></p>
<p>		< $!-- <$div class="navigation"><br />
			< $div class="alignleft">< ?php next_posts_link('&laquo; Previous Entries') ?>< $/div><br />
			< $div class="alignright">< ?php previous_posts_link('Next Entries &raquo;') ?>< $/div><br />
		< $/div> --></p>
<p>	< ?php else : ?></p>
<p>		< $h2 class="center">Not Found< $/h2><br />
		< $p class="center">Sorry, but you are looking for something that isn't here.< $/p><br />
		< ?php include (TEMPLATEPATH . "/searchform.php"); ?></p>
<p>	< ?php endif; ?></p>
<p>< $!-- end The Loop for Linkdump --><br />
</code></p>
<p>Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gina L</title>
		<link>http://www.paradoxdruid.com/archives/249/comment-page-1#comment-1359</link>
		<dc:creator>Gina L</dc:creator>
		<pubDate>Tue, 07 Feb 2006 02:24:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.paradoxdruid.com/archives/249#comment-1359</guid>
		<description>Hi Again,
I found that this is probably a better place to ask a question about your theme. I did the more tag which did work. Thanks.
I was wondering what I could do that would let the whole post be seen without a continue but only have the post title in the linkdump.</description>
		<content:encoded><![CDATA[<p>Hi Again,<br />
I found that this is probably a better place to ask a question about your theme. I did the more tag which did work. Thanks.<br />
I was wondering what I could do that would let the whole post be seen without a continue but only have the post title in the linkdump.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paradoxdruid</title>
		<link>http://www.paradoxdruid.com/archives/249/comment-page-1#comment-1357</link>
		<dc:creator>Paradoxdruid</dc:creator>
		<pubDate>Mon, 06 Feb 2006 18:24:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.paradoxdruid.com/archives/249#comment-1357</guid>
		<description>Hey Marissa-

Glad you got the stylesheet working.

If you want to have a little &quot;filed under &#039;Blah&#039;&quot; listing in your posts, you&#039;ll just need to make a minor edit to the Loop on the main template.

I suggest looking at http://codex.wordpress.org/Template_Tags/the_category</description>
		<content:encoded><![CDATA[<p>Hey Marissa-</p>
<p>Glad you got the stylesheet working.</p>
<p>If you want to have a little &#8220;filed under &#8216;Blah&#8217;&#8221; listing in your posts, you&#8217;ll just need to make a minor edit to the Loop on the main template.</p>
<p>I suggest looking at <a href="http://codex.wordpress.org/Template_Tags/the_category" rel="nofollow" rel="nofollow" target="_blank"></a><a href='http://codex.wordpress.org/Template_Tags/the_category' rel="nofollow" target="_blank">http://codex.wordpress.org/Template_Tags/the_category</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marissa</title>
		<link>http://www.paradoxdruid.com/archives/249/comment-page-1#comment-1356</link>
		<dc:creator>Marissa</dc:creator>
		<pubDate>Mon, 06 Feb 2006 05:47:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.paradoxdruid.com/archives/249#comment-1356</guid>
		<description>Ok, so I fixed the style sheet, but is there any way to have categories show up my posts.  Something that says filed in . . . ?</description>
		<content:encoded><![CDATA[<p>Ok, so I fixed the style sheet, but is there any way to have categories show up my posts.  Something that says filed in . . . ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marissa</title>
		<link>http://www.paradoxdruid.com/archives/249/comment-page-1#comment-1355</link>
		<dc:creator>Marissa</dc:creator>
		<pubDate>Mon, 06 Feb 2006 04:31:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.paradoxdruid.com/archives/249#comment-1355</guid>
		<description>Hi, I am trying to install this theme on my blog, but when I go to activate the theme in wordpress admin, it says that the style sheet is missing.  Any words of wisdom?  Thanks!</description>
		<content:encoded><![CDATA[<p>Hi, I am trying to install this theme on my blog, but when I go to activate the theme in wordpress admin, it says that the style sheet is missing.  Any words of wisdom?  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CellphoneSavant</title>
		<link>http://www.paradoxdruid.com/archives/249/comment-page-1#comment-1275</link>
		<dc:creator>CellphoneSavant</dc:creator>
		<pubDate>Tue, 20 Dec 2005 02:27:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.paradoxdruid.com/archives/249#comment-1275</guid>
		<description>Hi! This is a really great theme!  It is one of my favorites in my search so far.  Thanks!</description>
		<content:encoded><![CDATA[<p>Hi! This is a really great theme!  It is one of my favorites in my search so far.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.paradoxdruid.com/archives/249/comment-page-1#comment-1245</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Mon, 05 Dec 2005 06:47:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.paradoxdruid.com/archives/249#comment-1245</guid>
		<description>Thanks for all your help. :)</description>
		<content:encoded><![CDATA[<p>Thanks for all your help. <img src='http://www.paradoxdruid.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

