<?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: How to Use a Different Home Page, Archive Page or Single Post Page Layout for Your Site</title>
	<atom:link href="http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/</link>
	<description>Premium WordPress Magazine Theme from Solostream</description>
	<lastBuildDate>Thu, 12 Nov 2009 02:13:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Alistair Barnett</title>
		<link>http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/comment-page-1/#comment-1596</link>
		<dc:creator>Alistair Barnett</dc:creator>
		<pubDate>Sun, 12 Oct 2008 00:29:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/#comment-1596</guid>
		<description>Hi everyone,

If you are looking for support, please visit our forum at http://www.solostream.com/forum/ for immediate answers to your support questions. Otherwise, there will be a delay in answering your support-related comment if left here.

If this doesn&#039;t apply to you, feel free to comment!

Alistair</description>
		<content:encoded><![CDATA[<p>Hi everyone,</p>
<p>If you are looking for support, please visit our forum at <a href="http://www.solostream.com/forum/" rel="nofollow">http://www.solostream.com/forum/</a> for immediate answers to your support questions. Otherwise, there will be a delay in answering your support-related comment if left here.</p>
<p>If this doesn&#8217;t apply to you, feel free to comment!</p>
<p>Alistair</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vivek</title>
		<link>http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/comment-page-1/#comment-1595</link>
		<dc:creator>Vivek</dc:creator>
		<pubDate>Mon, 22 Sep 2008 15:43:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/#comment-1595</guid>
		<description>I have seen this thing asked a few times but can&#039;t figure out the answer. My home page has defaulted to only 3 articles and I can&#039;t figure it out how to increase the number of articles? Can you direct me to the solution. Thanks.</description>
		<content:encoded><![CDATA[<p>I have seen this thing asked a few times but can&#8217;t figure out the answer. My home page has defaulted to only 3 articles and I can&#8217;t figure it out how to increase the number of articles? Can you direct me to the solution. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Pollock</title>
		<link>http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/comment-page-1/#comment-1594</link>
		<dc:creator>Michael Pollock</dc:creator>
		<pubDate>Tue, 16 Sep 2008 16:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/#comment-1594</guid>
		<description>&gt;&gt;&gt;&gt;&gt; &lt;em&gt;I wanted to change the content from one of my Category pages side bar. Currently all my pages have the same side bar but I would like to change the video content from my BMX category page, is that possible? pleas say yes.&lt;/em&gt;

Try this ... right now, at the top of your sidebar.php template, you have your video code. You&#039;d just need to change it as follows:

&lt;code&gt;&lt;li&gt;
        &lt;?php if ( is_category(&#039;bmx&#039;) ) { ?&gt;
                PLACE THE CODE FOR YOUR BMX CATEGORY VIDEO HERE
        &lt;?php } else { ?&gt;
                PLACE THE CODE FOR YOUR NORMAL VIDEO HERE
        &lt;?php } ?&gt;
&lt;/li&gt;&lt;/code&gt;

If you wanted to have multiple different videos, it would work like this:

&lt;code&gt;&lt;li&gt;
        &lt;?php if ( is_category(&#039;bmx&#039;) ) { ?&gt;
                PLACE THE CODE FOR YOUR BMX CATEGORY VIDEO HERE
        &lt;?php } elseif ( is_category(&#039;category-slug&#039;) ) { ?&gt;
                PLACE THE CODE FOR YOUR OTHER CATEGORY VIDEO HERE
        &lt;?php } elseif ( is_category(&#039;category-slug&#039;) ) { ?&gt;
                PLACE THE CODE FOR YOUR OTHER CATEGORY VIDEO HERE
        &lt;?php } else { ?&gt;
                PLACE THE CODE FOR YOUR NORMAL VIDEO HERE
        &lt;?php } ?&gt;
&lt;/li&gt;&lt;/code&gt;

For more on using these conditional statements, see here:
http://codex.wordpress.org/Conditional_Tags#A_Category_Page


&gt;&gt;&gt;&gt;&gt; &lt;em&gt;Also I been haveing a big problem trying to change my permalinks so I can get rid of the &quot;Index&quot;. My web host is Ipower and they use IIS. Thanks!&lt;/em&gt;

Unfortunately, other than finding a new web host, I don&#039;t know what to tell you on this one.</description>
		<content:encoded><![CDATA[<p>>>>>> <em>I wanted to change the content from one of my Category pages side bar. Currently all my pages have the same side bar but I would like to change the video content from my BMX category page, is that possible? pleas say yes.</em></p>
<p>Try this &#8230; right now, at the top of your sidebar.php template, you have your video code. You&#8217;d just need to change it as follows:</p>
<p><pre><code>&lt;li&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php if ( is_category(&#039;bmx&#039;) ) { ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PLACE THE CODE FOR YOUR BMX CATEGORY VIDEO HERE
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php } else { ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PLACE THE CODE FOR YOUR NORMAL VIDEO HERE
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php } ?&gt;
&lt;/li&gt;</code></pre></p>
<p>If you wanted to have multiple different videos, it would work like this:</p>
<p><code></code></p>
<p>For more on using these conditional statements, see here:<br />
<a href="http://codex.wordpress.org/Conditional_Tags#A_Category_Page" rel="nofollow">http://codex.wordpress.org/Conditional_Tags#A_Category_Page</a></p>
<p>>>>>> <em>Also I been haveing a big problem trying to change my permalinks so I can get rid of the &#8220;Index&#8221;. My web host is Ipower and they use IIS. Thanks!</em></p>
<p>Unfortunately, other than finding a new web host, I don&#8217;t know what to tell you on this one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Al Cayne</title>
		<link>http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/comment-page-1/#comment-1593</link>
		<dc:creator>Al Cayne</dc:creator>
		<pubDate>Sun, 14 Sep 2008 18:42:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/#comment-1593</guid>
		<description>Hello Michael,
  I wanted to change the content from one of my Category pages side bar. Currently all my pages have the same side bar but I would like to change the video content from my BMX category page, is that possible? pleas say yes. Also I been haveing a big problem trying to change my permalinks so I can get rid of the &quot;Index&quot;. My web host is Ipower and they use IIS. Thanks!</description>
		<content:encoded><![CDATA[<p>Hello Michael,<br />
  I wanted to change the content from one of my Category pages side bar. Currently all my pages have the same side bar but I would like to change the video content from my BMX category page, is that possible? pleas say yes. Also I been haveing a big problem trying to change my permalinks so I can get rid of the &#8220;Index&#8221;. My web host is Ipower and they use IIS. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iskwew</title>
		<link>http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/comment-page-1/#comment-1591</link>
		<dc:creator>Iskwew</dc:creator>
		<pubDate>Tue, 02 Sep 2008 20:40:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/#comment-1591</guid>
		<description>Regarding overflow of text in the version 5 (I use that one for my homepage) - I use a plugin called &lt;a href=&quot;http://wordpress.org/extend/plugins/advanced-excerpt/&quot; rel=&quot;nofollow&quot;&gt;Advanced excerpt &lt;/a&gt;, which solves most of that problem.  Some times though, if I use long words, I put an excerpt in the post. And with Advanced excerpt you need to make sure it doesn&#039;t show photos in the option section.</description>
		<content:encoded><![CDATA[<p>Regarding overflow of text in the version 5 (I use that one for my homepage) &#8211; I use a plugin called <a href="http://wordpress.org/extend/plugins/advanced-excerpt/" rel="nofollow">Advanced excerpt </a>, which solves most of that problem.  Some times though, if I use long words, I put an excerpt in the post. And with Advanced excerpt you need to make sure it doesn&#8217;t show photos in the option section.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Pollock</title>
		<link>http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/comment-page-1/#comment-1592</link>
		<dc:creator>Michael Pollock</dc:creator>
		<pubDate>Sat, 30 Aug 2008 18:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/#comment-1592</guid>
		<description>&gt;&gt;&gt;&gt;&gt; &lt;em&gt;I don&#039;t see a response to Winter Ross Charlton above. I may not have enough room on one line for all of my categories. Can you have multiple rows of categories on the navigation bar? If so, what code must be modified?&lt;/em&gt;

1. Open the stylesheet and find this code:

&lt;code&gt;#nav {
 height:30px;
 line-height:30px;
 margin: 0 auto;
 padding:1px;
 border:1px solid #ddd;
 }&lt;/code&gt;

2. Change to this:

&lt;code&gt;#nav {
 margin: 0 auto;
 padding:1px;
 border:1px solid #ddd;
 }&lt;/code&gt;

3. Scroll down further and find this code:

&lt;code&gt;#nav li {
 float: left;
 margin: 0;
 padding:0;
 border-right:1px solid #fff;
 }&lt;/code&gt;

4. Change to this:

&lt;code&gt;#nav li {
 height:30px;
 line-heoght:30px;
 float: left;
 margin: 0;
 padding:0;
 border-right:1px solid #fff;
 }&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>>>>>> <em>I don&#8217;t see a response to Winter Ross Charlton above. I may not have enough room on one line for all of my categories. Can you have multiple rows of categories on the navigation bar? If so, what code must be modified?</em></p>
<p>1. Open the stylesheet and find this code:</p>
<p><pre><code>#nav {
 height:30px;
 line-height:30px;
 margin: 0 auto;
 padding:1px;
 border:1px solid #ddd;
 }</code></pre></p>
<p>2. Change to this:</p>
<p><pre><code>#nav {
 margin: 0 auto;
 padding:1px;
 border:1px solid #ddd;
 }</code></pre></p>
<p>3. Scroll down further and find this code:</p>
<p><pre><code>#nav li {
 float: left;
 margin: 0;
 padding:0;
 border-right:1px solid #fff;
 }</code></pre></p>
<p>4. Change to this:</p>
<p><pre><code>#nav li {
 height:30px;
 line-heoght:30px;
 float: left;
 margin: 0;
 padding:0;
 border-right:1px solid #fff;
 }</code></pre></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kurt</title>
		<link>http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/comment-page-1/#comment-1590</link>
		<dc:creator>kurt</dc:creator>
		<pubDate>Fri, 29 Aug 2008 18:06:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/#comment-1590</guid>
		<description>Michael:

I don&#039;t see a response to Winter Ross Charlton above. I may not have enough room on one line for all of my categories. Can you have multiple rows of categories on the navigation bar? If so, what code must be modified?

Thanks!

Kurt</description>
		<content:encoded><![CDATA[<p>Michael:</p>
<p>I don&#8217;t see a response to Winter Ross Charlton above. I may not have enough room on one line for all of my categories. Can you have multiple rows of categories on the navigation bar? If so, what code must be modified?</p>
<p>Thanks!</p>
<p>Kurt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/comment-page-1/#comment-1589</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Sun, 10 Aug 2008 15:52:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/#comment-1589</guid>
		<description>How can I create a page template that removes the sidebar and expands the page content width to take up the whole page? I only want to do this to one page so I can add an Amazon store to my site.</description>
		<content:encoded><![CDATA[<p>How can I create a page template that removes the sidebar and expands the page content width to take up the whole page? I only want to do this to one page so I can add an Amazon store to my site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Pollock</title>
		<link>http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/comment-page-1/#comment-1588</link>
		<dc:creator>Michael Pollock</dc:creator>
		<pubDate>Mon, 07 Jul 2008 16:34:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/#comment-1588</guid>
		<description>&lt;em&gt;I tried switching the home page to option 5, but the summary text is overflowing the box area. Any ideas on how to fix this?&lt;/em&gt;

Henry:

There are 2 options here:

1. Use the Excerpt field on your Write Post page, and make your excerpts shorter.

2. Increase the height of the boxes where the excerpts appear.

To do that, open your Stylesheet template and find this block of code:

&lt;code&gt;.home-post-list-5 .entry {
    height: 140px;
    padding:10px;
    }&lt;/code&gt;

Then simply adjust the height till you&#039;re happy with it.</description>
		<content:encoded><![CDATA[<p><em>I tried switching the home page to option 5, but the summary text is overflowing the box area. Any ideas on how to fix this?</em></p>
<p>Henry:</p>
<p>There are 2 options here:</p>
<p>1. Use the Excerpt field on your Write Post page, and make your excerpts shorter.</p>
<p>2. Increase the height of the boxes where the excerpts appear.</p>
<p>To do that, open your Stylesheet template and find this block of code:</p>
<p><pre><code>.home-post-list-5 .entry {
&nbsp;&nbsp;&nbsp;&nbsp;height: 140px;
&nbsp;&nbsp;&nbsp;&nbsp;padding:10px;
&nbsp;&nbsp;&nbsp;&nbsp;}</code></pre></p>
<p>Then simply adjust the height till you&#8217;re happy with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henry</title>
		<link>http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/comment-page-1/#comment-1587</link>
		<dc:creator>Henry</dc:creator>
		<pubDate>Mon, 07 Jul 2008 09:41:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.wp-magazine.com/2007/12/how-to-use-a-different-home-page-or-archive-page-layout-for-your-site/#comment-1587</guid>
		<description>Hi Michael,

I tried switching the home page to option 5, but the summary text is overflowing the box area. Any ideas on how to fix this? Site is located at thingsaboutphones.com

Many thanks</description>
		<content:encoded><![CDATA[<p>Hi Michael,</p>
<p>I tried switching the home page to option 5, but the summary text is overflowing the box area. Any ideas on how to fix this? Site is located at thingsaboutphones.com</p>
<p>Many thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
