<?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>Oracle of ONE1 &#187; navigation</title>
	<atom:link href="http://dvector.com/oracle/tag/navigation/feed/" rel="self" type="application/rss+xml" />
	<link>http://dvector.com/oracle</link>
	<description>Obscure words of unity</description>
	<lastBuildDate>Wed, 31 Aug 2011 21:25:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Header Navigation</title>
		<link>http://dvector.com/oracle/2008/05/21/banner-bar-navigation/</link>
		<comments>http://dvector.com/oracle/2008/05/21/banner-bar-navigation/#comments</comments>
		<pubDate>Wed, 21 May 2008 19:36:59 +0000</pubDate>
		<dc:creator>oracle</dc:creator>
				<category><![CDATA[dvector]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[dvector support]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://dvector.com/oracle/2008/05/21/banner-bar-navigation/</guid>
		<description><![CDATA[The header is the identifying masthead of your website. It is often convenient to include top level or special navigation here. In fact, I usually modify the header to include navigation to these pages:

Home
About
Contact
Site Map (activate the sitemap plugin and include
&#60;!-- ddsitemapgen --&#62; in your page or post)
Store

Mostly these are pages and not posts but [...]]]></description>
			<content:encoded><![CDATA[<p>The header is the identifying masthead of your website. It is often convenient to include top level or special navigation here. In fact, I usually modify the header to include navigation to these pages:</p>
<ol>
<li>Home</li>
<li>About</li>
<li>Contact</li>
<li>Site Map (activate the sitemap plugin and include<br />
<code>&lt;!-- ddsitemapgen --&gt;</code> in your page or post)</li>
<li>Store</li>
</ol>
<p><span id="more-33"></span>Mostly these are pages and not posts but if you wished posts in the banner bar navigation it would be a simple matter by using a hidden category.</p>
<p>NOTE: Modifying the Header requires working with the template header.php and often the file style.css.</p>
<h2>Modify header.php</h2>
<p>The default header.php has the following code:</p>
<pre>&lt;div id="header"&gt;
  &lt;div id="headerimg"&gt;
    &lt;h1&gt;
	&lt;a href="&lt;?php echo get_option('home'); ?&gt;/"&gt;
	&lt;?php bloginfo('name'); ?&gt;
	&lt;/a&gt;
	&lt;/h1&gt;
	&lt;div class="description"&gt;
	&lt;?php bloginfo('description'); ?&gt;
	&lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;</pre>
<p>I usually use my own header images including text and so delete the headerimg div. With this in mind, I end up with the following code in place of the original:</p>
<pre>&lt;div id="header"&gt;
  &lt;div id="menu_top_layout"&gt;
    &lt;div class="menu_top"&gt;
	&lt;ul class="menu_top"&gt;
	&lt;li class="page_item page-item-0"&gt;
	  &lt;a href="&lt;?php bloginfo('url'); ?&gt;"
	  title="&lt;?php bloginfo('name'); ?&gt;"&gt;Home&lt;/a&gt;
	&lt;/li&gt;
	&lt;?php wp_list_pages('depth=1&amp;child_of=0&amp;title_li='); ?&gt;
	&lt;/ul&gt;
	&lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;</pre>
<p>This alone does not give the desired effect, instead it outputs an unordered list of links. Now we must properly format this list using CSS.</p>
<h2>Modify style.css</h2>
<p>As you can see, I added a couple of style classes and ids to header.php. We can now use this to create new styles. Though you will likely need to adjust this CSS in oder to meet your styling needs, the following should get you started.</p>
<pre>/* Header Menu - add to style.css */
#menu_top_layout 	{
	float: right;
	overflow: hidden;
	margin:1px;
	height: 20px;
	width: 420px;
	text-align: right;
} 

ul.menu_top {
	margin: 0;
	list-style: none;
	line-height: normal;
	float: right;
}

ul.menu_top li {
	display: inline;
	padding: 0;
}

ul.menu_top a {
	color: #FFA500;
	display: block;
	float: left;
	height: 26px;
	padding: 6px 8px 0 10px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
}

ul.menu_top a:hover {
	color: #664700;
/*	background: transparent url(images/menuover.jpg) repeat-x; */
}

/* End Menu */</pre>
<p>These simple header navigations often make a huge difference to visitors and I encourage you to consider including them on your site.</p>
]]></content:encoded>
			<wfw:commentRss>http://dvector.com/oracle/2008/05/21/banner-bar-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Any HTML in the Sidebar</title>
		<link>http://dvector.com/oracle/2008/05/16/any-html-in-the-sidebar/</link>
		<comments>http://dvector.com/oracle/2008/05/16/any-html-in-the-sidebar/#comments</comments>
		<pubDate>Fri, 16 May 2008 22:28:14 +0000</pubDate>
		<dc:creator>oracle</dc:creator>
				<category><![CDATA[dvector]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[dvector support]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[sidebar]]></category>

		<guid isPermaLink="false">http://dvector.com/oracle/2008/05/16/any-html-in-the-sidebar/</guid>
		<description><![CDATA[Use the Text Widget to add HTML to the sidebar. This makes it very easy to add a wide variety of features to your site. I will demonstrate a few simple examples.

Iconic Links

Say you have a series of icons used to link to special pages or partner sites similar to the image.  Simply add [...]]]></description>
			<content:encoded><![CDATA[<p>Use the Text Widget to add HTML to the sidebar. This makes it very easy to add a wide variety of features to your site. I will demonstrate a few simple examples.</p>
<p><span id="more-34"></span></p>
<h2>Iconic Links</h2>
<p><img src="http://dvector.com/oracle/files/2008/05/iconiclinks.gif" alt="Iconic Links" align="top" /></p>
<p>Say you have a series of icons used to link to special pages or partner sites similar to the image.  Simply add the following HTML to add the iconic links to your sidebar.</p>
<pre>&lt;li&gt;
&lt;a href="http://gruffgoat.com" title="Gruff Goat Information Services"&gt;
&lt;img src="http://dvector.com/arcexercise/wp-content/themes/arcexercise-01/images/goat_logo_btn.jpg"
alt="Gruff Goat Information Services" border="0"&gt;&lt;/a&gt;
&lt;a href="http://redcrossinsewis.org" title="American Red Cross in Southeastern Wisconsin"&gt;
&lt;img src="http://dvector.com/arcexercise/wp-content/themes/arcexercise-01/images/arc_logo_btn.jpg"
alt="American Red Cross in Southeastern Wisconsin" border="0"&gt;&lt;/a&gt;
&lt;a href="http://dvector.com/arcexercise" title="Home"&gt;
&lt;img src="http://dvector.com/arcexercise/wp-content/themes/arcexercise-01/images/home_logo_btn.jpg"
alt="Home" border="0"&gt;&lt;/a&gt;
&lt;/li&gt;</pre>
<h2>Sponsor or Support Banners</h2>
<h2><img src="http://dvector.com/oracle/files/2008/05/sponsorlinks.gif" alt="Sponsor Banner" align="top" /></h2>
<p>Add the following code to add a sponsor or support banner to your sidebar.</p>
<pre>&lt;div align="center"&gt;
&lt;hr&gt;
&lt;p&gt;
&lt;a href="http://redcrossinsewis.org"&gt;
&lt;img src="http://www.redcrossinsewis.org/images/stories/logos/arcinsewis_120x60.gif"
alt="American Red Cross in Southeastern Wisconsin" height="60" width="120" border="1" /&gt;
&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.eff.org/br/"&gt;
&lt;img src="http://www.eff.org/br/br.gif"
alt="Join the Blue Ribbon Online Free Speech Campaign"
height="76" width="112" border="1" align="middle"&gt;
&lt;/a&gt;
&lt;/p&gt;
&lt;/div&gt;</pre>
<h2> Flash Banner</h2>
<p>Add some flash to your sidebar with the following code.</p>
<pre>&lt;div align="center"&gt;
  &lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
    width="160" height="75"&gt;
  &lt;param name="movie"
    value="http://www.redcrossinsewis.org/images/stories/video/redcross_fire_ggis.swf" /&gt;
  &lt;param name="quality" value="high" /&gt;
  &lt;param name="menu" value="false" /&gt;
  &lt;param name="wmode" value="" /&gt;
  &lt;embed src="http://www.redcrossinsewis.org/images/stories/video/redcross_fire_ggis.swf"
    wmode="transparent" quality="high" menu="false"
	pluginspage="http://www.macromedia.com/go/getflashplayer"
	type="application/x-shockwave-flash" width="160"
	height="75"&gt;
  &lt;/embed&gt;
  &lt;/object&gt;
&lt;/div&gt;</pre>
<p>This should help you get started on using the Text widget to impress your site&#8217;s visitors.</p>
]]></content:encoded>
			<wfw:commentRss>http://dvector.com/oracle/2008/05/16/any-html-in-the-sidebar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

