<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WP Garage &#187; navigation</title>
	<atom:link href="http://wpgarage.com/tag/navigation/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpgarage.com</link>
	<description>wordpress tricks, hacks, and tips</description>
	<lastBuildDate>Tue, 15 May 2012 11:49:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Create drop-down menus with WordPress plugins and themes</title>
		<link>http://wpgarage.com/plugins/create-drop-down-menus-with-wordpress-plugins-and-themes/</link>
		<comments>http://wpgarage.com/plugins/create-drop-down-menus-with-wordpress-plugins-and-themes/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 21:57:16 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[tabbed navigation]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/themes/create-drop-down-menus-with-wordpress-plugins-and-themes/</guid>
		<description><![CDATA[<p>Drop-down menus are a great way to improve the usability of your site. They allow you to offer more information without taking up too much real estate, as well as organize your content in a useful way for your readers. But coding a drop-down menu can be a bit of a PITA (no, not the [...]</p><p>This post was originally published at <a href="http://wpgarage.com/plugins/create-drop-down-menus-with-wordpress-plugins-and-themes/">Create drop-down menus with WordPress plugins and themes</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/plugins/create-drop-down-menus-with-wordpress-plugins-and-themes/" data-url="http://illum.in/pEszGZ" data-text="Create drop-down menus with WordPress plugins and themes" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/plugins/create-drop-down-menus-with-wordpress-plugins-and-themes/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/plugins/create-drop-down-menus-with-wordpress-plugins-and-themes/"></g:plusone></div></div><div style="float: left; width: 240px;">
<script type="text/javascript"><!--
google_ad_client = "pub-9020989590386566";
/* 200x200, created 6/14/10 */
google_ad_slot = "3727910436";
google_ad_width = 200;
google_ad_height = 200;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
</div>
<p>Drop-down menus are a great way to improve the usability of your site. They allow you to offer more information without taking up too much real estate, as well as organize your content in a useful way for your readers.</p>
<p>But coding a drop-down menu can be a bit of a PITA (no, not the bread that holds the falafel). Lucky for us, some of our fellow web-geeks have created easy ways for us to add drop-down menus to our websites and WordPress blogs.</p>
<h4>WordPress Drop-down menu plugins</h4>
<p><strong>1. The Linux and Web Development Blog</strong> has a <a title="How to make Pull-down or Drop down menu for WordPress 2" href="http://www.thanhsiang.org/faqing/node/58">WordPress plugin</a> that adds a drop-down menu to your navigation bar on your WordPress blog. In order to activate this plugin, you need to upload it, activate it, and add the following code snippet to your header file:</p>
<p><code>&lt;?php<br />
if (function_exists('get_menu'))<br />
get_menu('topmenu');<br />
?&gt;</code></p>
<p>Once you have done this, log in to your site, and customize the menu on the CSS Menu option page.</p>
<p>2. <a title="Ryan Hellyer" href="http://ryanhellyer.net/"><strong>Ryan Hellyer</strong></a> has developed a super-duper plugin/generator combo that allows you to create and heavily customize a drop-down menu in your WordPress blog. Features:</p>
<ul>
<li>Easy to customize styles with his handy <a title="Suckerfish Dropdowns Generator" href="http://pixopoint.com/suckerfish_css/">Suckerfish Dropdowns Generator</a></li>
<li>W3C valid HTML and CSS</li>
<li>Only uses Javascript for annoying browsers like IE6</li>
<li>If you want your visitors to be able to access your menu with their keyboard, Ryan offers the “<a href="http://ryanhellyer.net/wp-content/uploads/2008/03/suckerfish_keyboard.js">Suckerfish Javascript for keyboard accessibility</a>” code for including in your site.</li>
<li>Compatible with every existing browser (almost) and their uncles.</li>
</ul>
<p>You can&#8217;t say Ryan&#8217;s not thorough! See the drop-down menu in action on the <a title="Suckerfish Dropdowns Generator" href="http://ryanhellyer.net/dropdowns/">Suckerfish Dropdowns Generator</a> page.</p>
<p>To use his <a title="Suckerfish WordPress plugin" href="http://ryanhellyer.net/2008/02/20/suckerfish-plugin-11-beta/">Suckerfish WordPress plugin</a>:</p>
<ol>
<li>Download the plugin from his site and activate it.</li>
<li>Go over to his <a href="http://ryanhellyer.net/dropdowns/">Suckerfish Dropdowns Generator</a> and customize at will. You can change pretty much every style used for the drop-down: colors, background image, font sizes, families, weight, opacity, padding, etc. Ryan has also prepared 10 ready-made styles for drop-down menus that you can use instead of fiddling around with your own styles.</li>
<li>Once you are ready, click Submit Query and the generator will produce some CSS code.</li>
<li>Coyp and paste the code into your WordPress admin (under Options). The generated styles will only work with unordered lists with an ID of #suckerfishnav. In addition, this whole plugin/generator thing may not play nice with our least-favorite browser (IE6), so Ryan recommends using his handy <a href="http://ryanhellyer.net/wp-content/uploads/2008/03/suckerfish_ie.js">Suckerfish Javascript for Internet Explorer</a> code with your site.</li>
</ol>
<p>3. <a title="Dtabs wordpress plugins" href="http://dynamictangentconceptions.dtcnet.co.uk/downloads/wp-plugins/dtabs-dynamic-tabs-wordpress-plugin/"><strong>Dtabs (Dynamic Tabs) wordpress plugin</strong></a> by David Burton allows themes to include an optional user controlled dynamically tabbed navigation system with the possibility of drop down menus. This plugin only works with dTab enabled themes, of which there is currently one: <a title="Kubrick Tabs" href="http://dynamictangentconceptions.dtcnet.co.uk/downloads/wp-themes/kubrick-tabs/">Kubrick Tabs</a>. However, the author provides instructions on how to dTab enable a theme on <a href="http://dynamictangentconceptions.dtcnet.co.uk/downloads/wp-plugins/dtabs-dynamic-tabs-wordpress-plugin/">the plugin page</a>. You can see a working example on <a title="dtcnet.co.uk" href="http://dynamictangentconceptions.dtcnet.co.uk/">the author&#8217;s site</a>. <a title="dTabs WordPress plugin" href="http://wordpress.org/extend/plugins/dtabs/">The plugin is also available</a> on the WordPress.org plugins directory.</p>
<p>4. A few more drop-down menu plugins:</p>
<ul>
<li><a title="wp_jquery_dropdownmenu plugin" href="http://www.weeatbricks.com/2008/01/07/new-wordpress-plugin-for-creating-a-drop-down-navigation-menu-using-jquery/">wp_jquery_dropdownmenu plugin</a></li>
<li><a title="Wordpress CSS Drop-down Menu" href="http://www.zackdesign.biz/wp-plugins/42">WordPress CSS Drop-down Menu</a></li>
</ul>
<h4>WordPress Themes with drop-down menus</h4>
<p>1. <a title="The Jillij theme" href="http://www.jillij.com/2007/04/21/jillij-theme-v90/"><strong>The Jillij theme</strong></a> is a one-column theme based on Kubrick that has transformed the vertical sidebar into a horizontal drop-down navigation bar that appears under the header image. The drop-down menu is based on Widgets, so you can modify what appears on the nav bar by changing the widgets.</p>
<p>2. <strong>Ryan Hellyer</strong> has also created a theme that has his Suckerfish menu built-in: <a href="http://ryanhellyer.net/2008/02/23/aqua-vaccinium-wordpress-theme/">Aqua Vaccinium WordPress theme</a>. I have to admit that I don&#8217;t love the look of the theme (sorry Ryan!), but the built-in Suckerfish menu can be useful for people who prefer not to use a plugin.</p>
<p>(Ryan does have a theme which I really like, which he uses on his blog: <a title="Hellish Simplicity" href="http://ryanhellyer.net/2008/02/26/hellish-simplicity-wordpress-theme/">Hellish Simplicity</a>.)</p>
<p>This post was originally published at <a href="http://wpgarage.com/plugins/create-drop-down-menus-with-wordpress-plugins-and-themes/">Create drop-down menus with WordPress plugins and themes</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/create-drop-down-menus-with-wordpress-plugins-and-themes/feed/</wfw:commentRss>
		<slash:comments>47</slash:comments>
		</item>
		<item>
		<title>How to add a tabbed interface to your WordPress blog</title>
		<link>http://wpgarage.com/tips/how-to-add-a-tabbed-interface-to-your-wordpress-blog/</link>
		<comments>http://wpgarage.com/tips/how-to-add-a-tabbed-interface-to-your-wordpress-blog/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 11:07:39 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[sidebar]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/tips/how-to-add-a-tabbed-interface-to-your-wordpress-blog/</guid>
		<description><![CDATA[<p>Headsetoptions has a great review of the types of tabbed interfaces available, and a tutorial on how to add one to your WordPress blog. A tabbed interface is one of those boxes that you often see in the sidebar of a lot of premium themes where you click on tabs at the top, and it [...]</p><p>This post was originally published at <a href="http://wpgarage.com/tips/how-to-add-a-tabbed-interface-to-your-wordpress-blog/">How to add a tabbed interface to your WordPress blog</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/tips/how-to-add-a-tabbed-interface-to-your-wordpress-blog/" data-url="http://illum.in/qxp4mD" data-text="How to add a tabbed interface to your WordPress blog" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/tips/how-to-add-a-tabbed-interface-to-your-wordpress-blog/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/tips/how-to-add-a-tabbed-interface-to-your-wordpress-blog/"></g:plusone></div></div><p>Headsetoptions has a great review of <a href="http://www.headsetoptions.org/2008/01/19/anatomy-of-a-magazine-style-premium-wordpress-theme-part-2-domtab-tabber-more/" title="Anatomy of a Magazine Style Premium WordPress Theme - Part 2: DOMTab, Tabber, more">the types of tabbed interfaces available</a>, and a tutorial on how to add one to your WordPress blog.</p>
<p>A tabbed interface is one of those boxes that you often see in the sidebar of a lot of premium themes where you click on tabs at the top, and it shows you different types of information in the same space. The main benefit of tabbed interfaces is that it helps save real estate on your blog, which can be pretty limited. Here&#8217;s an example from Solostream&#8217;s <a href="http://www.wp-magazine.com/" title="Premium WordPress Magazine Theme">Premium WordPress Magazine Theme</a>:</p>
<p><img src="http://wpgarage.com/wp-content/uploads/2008/01/tabbed-example.png" alt="Tabbed interface on Solostream Premium WordPress Magazine Theme" /></p>
<p>Solostream also has a tabbed interface for the feature article section in some of his <a href="http://www.solostream.com/2007/10/28/wordpress-theme-solostream-3-column-10/" title="WordPress Theme - Solostream 3-Column 1.0">other</a> <a href="http://www.solostream.com/2007/10/06/wordpress-theme-wp-glory-10/" title="WordPress 2.3 Theme - WP-Glory 1.0">premium</a> themes.</p>
<p>Basically, there are three tabbed interfaces available: <a href="http://onlinetools.org/tools/domtabdata/" title="DOMtab">DOMtab</a>, <a href="http://www.barelyfitz.com/projects/tabber/" title="Tabber">Tabber</a>, and <a href="http://www.wdvl.com/Authoring/JavaScript/JS_CSS_DOM/JS_CSS_DOM2_2.html" title="Tabs">Tabs</a>. The main difference between the tabbed interfaces are ease of use, and whether you can use them for commercial purposes.</p>
<p><em>Update Jan. 26, 2007: </em>Another tabbing method that wasn&#8217;t mentioned on Headsetoptions is <a href="http://developer.yahoo.com/yui/tabview/" title="Yahoo! UI Library: TabView">Yahoo! UI Library: TabView</a>.</p>
<p>Check out the full post for the whole shebang: <a href="http://www.headsetoptions.org/2008/01/19/anatomy-of-a-magazine-style-premium-wordpress-theme-part-2-domtab-tabber-more/">Anatomy of a Magazine Style Premium WordPress Theme &#8211; Part 2: DOMTab, Tabber, more </a></p>
<p>This post was originally published at <a href="http://wpgarage.com/tips/how-to-add-a-tabbed-interface-to-your-wordpress-blog/">How to add a tabbed interface to your WordPress blog</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/tips/how-to-add-a-tabbed-interface-to-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Display WordPress categories in a horizontal dropdown menu</title>
		<link>http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/</link>
		<comments>http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 09:59:55 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Shorties]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/</guid>
		<description><![CDATA[<p>Anthology of Ideas shares his method for creating a horizontal drop-down menu for categories, involving the use of CSS and Javascript. Displaying WordPress categories in a horizontal dropdown menu</p><p>This post was originally published at <a href="http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/">Display WordPress categories in a horizontal dropdown menu</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/" data-url="http://illum.in/nxYSKt" data-text="Display WordPress categories in a horizontal dropdown menu" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/"></g:plusone></div></div><p>Anthology of Ideas shares his method for creating a horizontal drop-down menu for categories, involving the use of CSS and Javascript.</p>
<p><a href="http://anthologyoi.com/wordpress/displaying-wordpress-categories-in-a-horizontal-dropdown-menu.html">Displaying WordPress categories in a horizontal dropdown menu</a></p>
<p>This post was originally published at <a href="http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/">Display WordPress categories in a horizontal dropdown menu</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/shorties/display-wordpress-categories-in-a-horizontal-dropdown-menu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress plugin easily creates drop-down navigation</title>
		<link>http://wpgarage.com/plugins/wordpress-plugin-easily-creates-drop-down-navigation/</link>
		<comments>http://wpgarage.com/plugins/wordpress-plugin-easily-creates-drop-down-navigation/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 09:40:48 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[Pages]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/plugins/wordpress-plugin-easily-creates-drop-down-navigation/</guid>
		<description><![CDATA[<p>This is really handy: the Drop Down Menu WordPress plugin creates a drop-down navigation scheme where sub-pages appear under their parent pages in the menu. All you have to do is upload, activate, and add one snippet of code to your template files. The menu can be styled in the styles.css file in the plugin&#8217;s [...]</p><p>This post was originally published at <a href="http://wpgarage.com/plugins/wordpress-plugin-easily-creates-drop-down-navigation/">WordPress plugin easily creates drop-down navigation</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/plugins/wordpress-plugin-easily-creates-drop-down-navigation/" data-url="http://illum.in/qYb7hR" data-text="WordPress plugin easily creates drop-down navigation" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/plugins/wordpress-plugin-easily-creates-drop-down-navigation/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/plugins/wordpress-plugin-easily-creates-drop-down-navigation/"></g:plusone></div></div><p>This is really handy: the <a href="http://www.weeatbricks.com/2008/01/07/new-wordpress-plugin-for-creating-a-drop-down-navigation-menu-using-jquery/" title="Drop Down Menu WordPress plugin">Drop Down Menu WordPress plugin</a> creates a drop-down navigation scheme where sub-pages appear under their parent pages in the menu. All you have to do is upload, activate, and add one snippet of code to your template files.  The menu can be styled in the styles.css file in the plugin&#8217;s folder.</p>
<p>See the demo <a href="http://throwingshapes.net/hp_wordpress/" title="Drop Down Menu WordPress plugin demo">here</a>.</p>
<p><a href="http://www.weeatbricks.com/2008/01/07/new-wordpress-plugin-for-creating-a-drop-down-navigation-menu-using-jquery/">WordPress plugin for creating a drop down navigation menu using JQuery»</a></p>
<p>This post was originally published at <a href="http://wpgarage.com/plugins/wordpress-plugin-easily-creates-drop-down-navigation/">WordPress plugin easily creates drop-down navigation</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/wordpress-plugin-easily-creates-drop-down-navigation/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>WordPress challenge: getting class current_page_item to work when home page is not blog</title>
		<link>http://wpgarage.com/wordpress-as-cms/wordpress-challenge-getting-class-current_page_item-to-work-when-home-page-is-not-blog/</link>
		<comments>http://wpgarage.com/wordpress-as-cms/wordpress-challenge-getting-class-current_page_item-to-work-when-home-page-is-not-blog/#comments</comments>
		<pubDate>Wed, 05 Dec 2007 08:30:18 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[WordPress as CMS]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[Pages]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/wordpress-as-cms/wordpress-challenge-getting-class-current_page_item-to-work-when-home-page-is-not-blog/</guid>
		<description><![CDATA[<p>Sorry for the confusing title, but there is an issue that we face over and over when using WordPress as a CMS, and have not been able to solve. When we are using WordPress as a CMS, our Blog page doesn&#8217;t pick up the current_page_item class and therefore its link on the nav bar isn&#8217;t [...]</p><p>This post was originally published at <a href="http://wpgarage.com/wordpress-as-cms/wordpress-challenge-getting-class-current_page_item-to-work-when-home-page-is-not-blog/">WordPress challenge: getting class current_page_item to work when home page is not blog</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/wordpress-as-cms/wordpress-challenge-getting-class-current_page_item-to-work-when-home-page-is-not-blog/" data-url="http://illum.in/rbBZfU" data-text="WordPress challenge: getting class current_page_item to work when home page is not blog" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/wordpress-as-cms/wordpress-challenge-getting-class-current_page_item-to-work-when-home-page-is-not-blog/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/wordpress-as-cms/wordpress-challenge-getting-class-current_page_item-to-work-when-home-page-is-not-blog/"></g:plusone></div></div><p>Sorry for the confusing title, but there is an issue that we face over and over when using <a href="category/wordpress-as-cms/" title="WordPress as CMS category on WordPressGarage">WordPress as a CMS</a>, and have not been able to solve. When we are using WordPress as a CMS, our Blog page doesn&#8217;t pick up the current_page_item class and therefore its link on the nav bar isn&#8217;t highlighted like the other pages are. How can we get it to change?</p>
<p>I know that the above might not make sense, so here is a detailed description of the problem:</p>
<p>If you use WordPress as a CMS, you generally create the Pages you want to appear on your nav bar under Write &gt; Write Page. One of those Pages is the Home page, for example, and you create another Page for your blog posts called Blog. Then,  you go to Options &gt; Reading, and select one of those pages for your front page from the drop-down list, in this case you would select the Home page, and another page for your blog posts, in this case the Blog page.</p>
<p><img src="http://wpgarage.com/wp-content/uploads/2007/12/options-read1.png" alt="options-read1.png" /></p>
<p>You create a style in your style sheet called current_page_item which causes the current page that the viewer is on to appear differently in the nav bar or list of pages. For example, you want the background color of that page on the nav bar to change from green to purple.</p>
<p>Now, here&#8217;s where the problem lies: all pages on the nav bar change from green to purple when the user is on that page&#8230;except the Blog page! For some reason, that Blog page does not pick up the current_page_item class.</p>
<p>So my question is: does anyone know of a solution to this problem?</p>
<p>Thanks!</p>
<p>This post was originally published at <a href="http://wpgarage.com/wordpress-as-cms/wordpress-challenge-getting-class-current_page_item-to-work-when-home-page-is-not-blog/">WordPress challenge: getting class current_page_item to work when home page is not blog</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/wordpress-as-cms/wordpress-challenge-getting-class-current_page_item-to-work-when-home-page-is-not-blog/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>25 Code Snippets for Web Designers</title>
		<link>http://wpgarage.com/design/25-code-snippets-for-web-designers/</link>
		<comments>http://wpgarage.com/design/25-code-snippets-for-web-designers/#comments</comments>
		<pubDate>Tue, 13 Mar 2007 21:10:37 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[bar graps]]></category>
		<category><![CDATA[image maps]]></category>
		<category><![CDATA[lightboxes]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[rounded corners]]></category>
		<category><![CDATA[speech bubbles]]></category>
		<category><![CDATA[star rating]]></category>
		<category><![CDATA[tabbed navigation]]></category>
		<category><![CDATA[tool tips]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/tips/25-code-snippets-for-web-designers/</guid>
		<description><![CDATA[<p>This is a really amazing collection of links to code snippets for creating the following: Bubble tool tips Box-over tool tips Star rating systems Forms Rounded corners Speech bubbles (like those used in comments) Bar graphs Gallery lightboxes CSS image maps Tabbed navigation 25 Code Snippets for Web Designers (Part1)&#62;&#62;</p><p>This post was originally published at <a href="http://wpgarage.com/design/25-code-snippets-for-web-designers/">25 Code Snippets for Web Designers</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/design/25-code-snippets-for-web-designers/" data-url="http://illum.in/r5Ally" data-text="25 Code Snippets for Web Designers" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/design/25-code-snippets-for-web-designers/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/design/25-code-snippets-for-web-designers/"></g:plusone></div></div><p>This is a really amazing collection of links to code snippets for creating the following:</p>
<ul>
<li>Bubble tool tips</li>
<li>Box-over tool tips</li>
<li>Star rating systems</li>
<li>Forms</li>
<li>Rounded corners</li>
<li>Speech bubbles (like those used in comments)</li>
<li>Bar graphs</li>
<li>Gallery lightboxes</li>
<li>CSS image maps</li>
<li>Tabbed navigation</li>
</ul>
<p><a href="http://tutorialblog.org/25-code-snippets-for-web-designers-part1/">25 Code Snippets for Web Designers (Part1)&gt;&gt;</a></p>
<p>This post was originally published at <a href="http://wpgarage.com/design/25-code-snippets-for-web-designers/">25 Code Snippets for Web Designers</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/design/25-code-snippets-for-web-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

