<?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: WordPress: Active Page Tabs</title>
	<atom:link href="http://performancing.com/wordpress__active_page_tabs/feed/" rel="self" type="application/rss+xml" />
	<link>http://performancing.com/wordpress__active_page_tabs/</link>
	<description>Invest In Performance</description>
	<lastBuildDate>Thu, 24 May 2012 01:57:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Chris G</title>
		<link>http://performancing.com/wordpress__active_page_tabs/comment-page-1/#comment-19624</link>
		<dc:creator>Chris G</dc:creator>
		<pubDate>Mon, 29 Jun 2009 14:25:22 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2800#comment-19624</guid>
		<description>hrmmmm, It looks like you want to simply change the color of the link on the active page. Assuming that is what you are looking for you need to add &quot;a&quot; to that current_page_item definition.

#menu ul li.current_page_item a { color: #000; }

HTH</description>
		<content:encoded><![CDATA[<p>hrmmmm, It looks like you want to simply change the color of the link on the active page. Assuming that is what you are looking for you need to add &#8220;a&#8221; to that current_page_item definition.</p>
<p>#menu ul li.current_page_item a { color: #000; }</p>
<p>HTH</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dr. Polstra</title>
		<link>http://performancing.com/wordpress__active_page_tabs/comment-page-1/#comment-19623</link>
		<dc:creator>Dr. Polstra</dc:creator>
		<pubDate>Wed, 17 Jun 2009 12:18:34 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2800#comment-19623</guid>
		<description>What am I doing wrong here?

#menu {

text-align: left;
height: 50px;
width: 100%;
background-color: #51b948;
}
#menu ul {
margin: 0px;
padding: 0px;
text-align: left;
font-family:&#039;Lucida Grande&#039;, Verdana, Arial, Sans-Serif;
font-size: 18px;
font-weight: bold;
color: #ffffff;
line-height: 20px;
white-space: nowrap;
}
#menu li {
list-style-type: none;
display: inline;
}
#menu li a {
text-decoration: none;
padding: 5px 5px;
color: #ffffff;
}
#menu li a:link {
color: #ffffff:
}
#menu li a:hover {
font-weight: bold;
color: #ffffff;
}
#menu ul li.current_page_item{
font-color: #000000;
}

My menu code is as follows: 

&lt;div id=&quot;menu&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;&lt;?php if (is_home()) { echo &quot;current_page_item&quot;; } ?&gt;&quot;&gt;&lt;a href=&quot;&lt;?php echo get_settings(&#039;home&#039;); ?&gt;&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
&lt;?php wp_list_pages(&#039;title_li=&amp;depth=1&#039;); ?&gt;
&lt;/ul&gt;
&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<p>What am I doing wrong here?</p>
<p>#menu {</p>
<p>text-align: left;<br />
height: 50px;<br />
width: 100%;<br />
background-color: #51b948;<br />
}<br />
#menu ul {<br />
margin: 0px;<br />
padding: 0px;<br />
text-align: left;<br />
font-family:&#8217;Lucida Grande&#8217;, Verdana, Arial, Sans-Serif;<br />
font-size: 18px;<br />
font-weight: bold;<br />
color: #ffffff;<br />
line-height: 20px;<br />
white-space: nowrap;<br />
}<br />
#menu li {<br />
list-style-type: none;<br />
display: inline;<br />
}<br />
#menu li a {<br />
text-decoration: none;<br />
padding: 5px 5px;<br />
color: #ffffff;<br />
}<br />
#menu li a:link {<br />
color: #ffffff:<br />
}<br />
#menu li a:hover {<br />
font-weight: bold;<br />
color: #ffffff;<br />
}<br />
#menu ul li.current_page_item{<br />
font-color: #000000;<br />
}</p>
<p>My menu code is as follows: </p>
<div id="menu">
<ul>
<li class="<?php if (is_home()) { echo "current_page_item"; } ?>&#8220;><a href="<?php echo get_settings('home'); ?>&#8220;>Home</a></li>
<p>< ?php wp_list_pages('title_li=&#038;depth=1'); ?>
</ul>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: joshuwar</title>
		<link>http://performancing.com/wordpress__active_page_tabs/comment-page-1/#comment-19622</link>
		<dc:creator>joshuwar</dc:creator>
		<pubDate>Tue, 02 Jun 2009 06:44:20 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2800#comment-19622</guid>
		<description>Scratch that- I&#039;ve worked it out. In case anybody&#039;s interested, if you&#039;re using a Page as your homepage you need to use a different conditional tag: is_front_page()

&lt;code&gt;
&lt;li class=&quot;&lt;?php if (is_front_page()) { echo &quot;current_page_item&quot;; } ?&gt;&quot;&gt;
     &lt;a href=&quot;&lt;?php echo get_settings(&#039;home&#039;); ?&gt;/&quot;&gt;Home&lt;/a&gt;
&lt;/li&gt;
&lt;/code&gt;

Got that from the codex: &lt;a&gt;http://codex.wordpress.org/Conditional_Tags&lt;/a&gt;

Thanks for putting me on the right track!</description>
		<content:encoded><![CDATA[<p>Scratch that- I&#8217;ve worked it out. In case anybody&#8217;s interested, if you&#8217;re using a Page as your homepage you need to use a different conditional tag: is_front_page()</p>
<p><code></p>
<li class="<?php if (is_front_page()) { echo "current_page_item"; } ?>"><br />
     <a href="<?php echo get_settings('home'); ?>/">Home</a>
</li>
<p></code></p>
<p>Got that from the codex: <a>http://codex.wordpress.org/Conditional_Tags</a></p>
<p>Thanks for putting me on the right track!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joshuwar</title>
		<link>http://performancing.com/wordpress__active_page_tabs/comment-page-1/#comment-19621</link>
		<dc:creator>joshuwar</dc:creator>
		<pubDate>Tue, 02 Jun 2009 05:03:59 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2800#comment-19621</guid>
		<description>Hey man- I really appreciate your taking the time to publish this- it&#039;s extremely clear and solves a whole pile of brain ache.

So anyway, I don&#039;t know if you&#039;re in the habit of helping random commenters, but the last part, with the (is_home()) php call, doesn&#039;t seem to be working for me- firebug shows the home li class as &quot;&quot;

...So I&#039;ve got an echo problem.

I&#039;m using a Page as my homepage, with its own specific page tempate file- do you think this could be causing the difficulty? 

Here&#039;s my code:

&lt;code&gt;&lt;li class=&quot;&lt;?php if (is_home()) { echo &quot;current_page_item&quot;; } ?&gt;&quot;&gt;
        	&lt;a href=&quot;&lt;?php echo get_settings(&#039;home&#039;); ?&gt;/&quot; title=&quot;Return to the the frontpage&quot;&gt;Home&lt;br /&gt;&lt;/a&gt;
        &lt;/li&gt;
&lt;/code&gt;

Any ideas? Don&#039;t worry if you don&#039;t have time.

Thanks again!

</description>
		<content:encoded><![CDATA[<p>Hey man- I really appreciate your taking the time to publish this- it&#8217;s extremely clear and solves a whole pile of brain ache.</p>
<p>So anyway, I don&#8217;t know if you&#8217;re in the habit of helping random commenters, but the last part, with the (is_home()) php call, doesn&#8217;t seem to be working for me- firebug shows the home li class as &#8220;&#8221;</p>
<p>&#8230;So I&#8217;ve got an echo problem.</p>
<p>I&#8217;m using a Page as my homepage, with its own specific page tempate file- do you think this could be causing the difficulty? </p>
<p>Here&#8217;s my code:</p>
<p><code>
<li class="<?php if (is_home()) { echo "current_page_item"; } ?>"><br />
        	<a href="<?php echo get_settings('home'); ?>/" title="Return to the the frontpage">Home<br /></a>
        </li>
<p></code></p>
<p>Any ideas? Don&#8217;t worry if you don&#8217;t have time.</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thoth</title>
		<link>http://performancing.com/wordpress__active_page_tabs/comment-page-1/#comment-19620</link>
		<dc:creator>Thoth</dc:creator>
		<pubDate>Tue, 07 Apr 2009 15:05:56 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2800#comment-19620</guid>
		<description>Just awesome, I thank you very much! 
Without this hint, I would be lost...</description>
		<content:encoded><![CDATA[<p>Just awesome, I thank you very much!<br />
Without this hint, I would be lost&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CAsey</title>
		<link>http://performancing.com/wordpress__active_page_tabs/comment-page-1/#comment-19619</link>
		<dc:creator>CAsey</dc:creator>
		<pubDate>Sun, 08 Feb 2009 20:49:29 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2800#comment-19619</guid>
		<description>This is great information. I really appreciate it.</description>
		<content:encoded><![CDATA[<p>This is great information. I really appreciate it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fishermanjohn69999999</title>
		<link>http://performancing.com/wordpress__active_page_tabs/comment-page-1/#comment-19618</link>
		<dc:creator>fishermanjohn69999999</dc:creator>
		<pubDate>Sat, 07 Feb 2009 15:13:33 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2800#comment-19618</guid>
		<description>Thank you so much for writing this tutorial. I&#039;ve had so many problems in the past trying to follow tutorials, but this one was very clean, simple, short, and explained well. THANK YOU!!!!!!!</description>
		<content:encoded><![CDATA[<p>Thank you so much for writing this tutorial. I&#8217;ve had so many problems in the past trying to follow tutorials, but this one was very clean, simple, short, and explained well. THANK YOU!!!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://performancing.com/wordpress__active_page_tabs/comment-page-1/#comment-19617</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sun, 04 Jan 2009 13:46:04 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2800#comment-19617</guid>
		<description>thank you thank you thank you!!!!!!
been looking for a wordpress css menu with current or active list for more then weeks already...
thanks a lot!!!!</description>
		<content:encoded><![CDATA[<p>thank you thank you thank you!!!!!!<br />
been looking for a wordpress css menu with current or active list for more then weeks already&#8230;<br />
thanks a lot!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jhames</title>
		<link>http://performancing.com/wordpress__active_page_tabs/comment-page-1/#comment-19616</link>
		<dc:creator>jhames</dc:creator>
		<pubDate>Wed, 17 Dec 2008 17:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2800#comment-19616</guid>
		<description>Holy crap, I have been searching for weeks in hopes of finding a solution to categories as tabs. Your code was just. so. simple.

Let&#039;s say I&#039;m on the main tab and I click over to another one to view the posts related to that category. When I click to view an individual post, how can I get the tabs to recognize that post and display the current item?</description>
		<content:encoded><![CDATA[<p>Holy crap, I have been searching for weeks in hopes of finding a solution to categories as tabs. Your code was just. so. simple.</p>
<p>Let&#8217;s say I&#8217;m on the main tab and I click over to another one to view the posts related to that category. When I click to view an individual post, how can I get the tabs to recognize that post and display the current item?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nate</title>
		<link>http://performancing.com/wordpress__active_page_tabs/comment-page-1/#comment-19615</link>
		<dc:creator>nate</dc:creator>
		<pubDate>Mon, 21 Jul 2008 12:05:10 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2800#comment-19615</guid>
		<description>hey thanks for the breakdown... it helped me out a lot!</description>
		<content:encoded><![CDATA[<p>hey thanks for the breakdown&#8230; it helped me out a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: boypets</title>
		<link>http://performancing.com/wordpress__active_page_tabs/comment-page-1/#comment-19614</link>
		<dc:creator>boypets</dc:creator>
		<pubDate>Sat, 17 May 2008 08:29:55 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2800#comment-19614</guid>
		<description>to ramble about returned the tree, took a job chunk</description>
		<content:encoded><![CDATA[<p>to ramble about returned the tree, took a job chunk</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arejae</title>
		<link>http://performancing.com/wordpress__active_page_tabs/comment-page-1/#comment-19613</link>
		<dc:creator>arejae</dc:creator>
		<pubDate>Mon, 06 Aug 2007 21:53:25 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2800#comment-19613</guid>
		<description>Thanks for the great tips. Small things can make big difference. </description>
		<content:encoded><![CDATA[<p>Thanks for the great tips. Small things can make big difference. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phillip Kimpo Jr</title>
		<link>http://performancing.com/wordpress__active_page_tabs/comment-page-1/#comment-19612</link>
		<dc:creator>Phillip Kimpo Jr</dc:creator>
		<pubDate>Mon, 25 Jun 2007 05:35:11 +0000</pubDate>
		<guid isPermaLink="false">http://performancing.com/?p=2800#comment-19612</guid>
		<description>Great article, Nathan. Will try this out on some of my (new) blogs </description>
		<content:encoded><![CDATA[<p>Great article, Nathan. Will try this out on some of my (new) blogs </p>
]]></content:encoded>
	</item>
</channel>
</rss>

