<?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"
	>

<channel>
	<title>Dustin Edwards</title>
	<atom:link href="http://dustinedwards.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://dustinedwards.info</link>
	<description>Web presence and contact information for Dustin Edwards</description>
	<pubDate>Wed, 23 Jan 2008 08:20:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>WordPress Suckerfish Menu</title>
		<link>http://dustinedwards.info/wordpress-suckerfish-menu/</link>
		<comments>http://dustinedwards.info/wordpress-suckerfish-menu/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 13:55:57 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[World Wide Web]]></category>

		<category><![CDATA[suckerfish]]></category>

		<guid isPermaLink="false">http://dustinedwards.info/?p=3</guid>
		<description><![CDATA[Easy Suckerfish menu for Wordpress

This Suckerfish menu version is a light-weight drop-down three-level horizontal menu.
To view an example of the Wordpress Suckerfish menu in action, hover over
&#8220;Pages &#124; Categories &#124; Archives &#124; Links&#8221; at the top of this website.
Other examples of the Suckerfish menu used with WordPress can be found at
Invoke Media and RockinThemes.
How-to add [...]]]></description>
			<content:encoded><![CDATA[<p class="how-to">Easy Suckerfish menu for Wordpress<br />
<span id="more-3"></span></p>
<p>This Suckerfish menu version is a light-weight drop-down three-level horizontal menu.</p>
<p>To view an example of the Wordpress Suckerfish menu in action, hover over</p>
<p>&#8220;Pages | Categories | Archives | Links&#8221; at the top of this website.</p>
<p>Other examples of the Suckerfish menu used with WordPress can be found at</p>
<p><a href="http://www.invokemedia.com/css-dropdown-menu-with-wordpress.html" title="Invoke Media's WordPress Suckerfish menu" target="_blank">Invoke Media</a> and <a href="http://rockinthemes.com/rockinsuckerfish2-2-column-suckerfish-free-wordpress-theme-released/" title="RockinThemes's WordPress Suckerfish menu" target="_blank">RockinThemes</a>.</p>
<p class="highlight">How-to add the Wordpress Suckerfish menu to your website</p>
<p>In the <em><strong>header.php</strong></em> file, before the closing<em><strong> &lt;/div&gt;</strong></em> for &lt;div id=&#8221;header&#8221;&gt;</p>
<p>(alternatively, before <em><strong>&lt;hr /&gt;</strong></em>).</p>
<p>(note: you may need to center the menu using &lt;center&gt; &#8230;menu code&#8230; &lt;/center&gt; and edit the style.css file to adjust the width of the menu to fit within your theme)</p>
<p>copy and paste:</p>
<p class="box-hilite"> <code class="prettyprint"><br />
&lt;ul id="nav"&gt;<br />
&lt;li&gt;&lt;a href=""&gt;Pages&lt;/a&gt;<br />
&lt;ul class="pages"&gt;<br />
&lt;?php wp_list_pages('title_li=&amp;depth=1');?&gt;<br />
&lt;/ul&gt;<br />
&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=""&gt;Categories&lt;/a&gt;<br />
&lt;ul class="categories"&gt;<br />
&lt;?php wp_list_cats();?&gt;<br />
&lt;/ul&gt;<br />
&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=""&gt;Archives&lt;/a&gt;<br />
&lt;ul class="archives"&gt;<br />
&lt;?php wp_get_archives('type=monthly');?&gt;&lt;/ul&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=""&gt;Links&lt;/a&gt;<br />
&lt;ul class="categories"&gt;&lt;?php get_links(-1,'&lt;li&gt;', '&lt;/li&gt;', ' - ');?&gt;<br />
&lt;/ul&gt;<br />
&lt;/li&gt;<br />
&lt;/ul&gt; </code></p>
<p>In the <em><strong>style.css</strong></em> file, at the end</p>
<p>(note: you may need to make adjustments to the width of the menu to fit within your theme.  For the default theme, width: 95%)</p>
<p>copy and paste:</p>
<p class="box-hilite"><code class="prettyprint">#nav, #nav ul {<br />
width : 100%;<br />
height : 1.8em;<br />
list-style : none;<br />
font-weight : bold;<br />
background : #faf5d7;<br />
padding : 0;<br />
margin : 0;<br />
border : solid #eda;<br />
border-width : 0;<br />
}<br />
#nav a {<br />
display : block;<br />
width : 10em;<br />
width : 6em;<br />
color : #7c6240;<br />
text-decoration : none;<br />
padding : 0.25em 2em;<br />
border : none;<br />
}<br />
#nav li {<br />
float : left;<br />
padding : 0;<br />
width : 10em;<br />
}<br />
#nav li ul {<br />
position : absolute;<br />
left : -999em;<br />
height : auto;<br />
width : 14.4em;<br />
width : 13.9em;<br />
font-weight : normal;<br />
border-width : 0.25em;<br />
margin : 0;<br />
}<br />
#nav li li {<br />
padding-right : 1em;<br />
width : 13em;<br />
}<br />
#nav li ul a {<br />
width : 13em;<br />
width : 9em;<br />
}<br />
#nav li ul ul {<br />
margin : -1.7em 0 0 14em;<br />
background: #faf5d7;<br />
}<br />
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {<br />
left : -999em;<br />
}<br />
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {<br />
left : auto;<br />
}<br />
#nav li:hover, #nav li.sfhover {<br />
background : #eda;<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://dustinedwards.info/wordpress-suckerfish-menu/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
