<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Topic: custom menu in thematic childtheme</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sun, 19 May 2013 04:58:14 +0000</pubDate>

<item>
<title>helgatheviking on "custom menu in thematic childtheme"</title>
<link>http://themeshaper.com/forums/topic/custom-menu-in-thematic-childtheme#post-11398</link>
<pubDate>Tue, 13 Apr 2010 00:20:04 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">11398@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;glad I could help.  I just realized that I used the following code in my own theme.  Adding the div class=menu and especially the ul class taps into Thematic's default menu styling.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;aboveheader&#38;quot;&#38;gt;
&#38;lt;div class=&#38;quot;skip-link&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;#content&#38;quot; title=&#38;quot;&#38;lt;?php _e(&#38;#39;Skip navigation to the content&#38;#39;, &#38;#39;thematic&#38;#39;); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php _e(&#38;#39;Skip to content&#38;#39;, &#38;#39;thematic&#38;#39;); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/div&#38;gt;	

&#38;lt;div class=&#38;quot;menu menusplus&#38;quot;&#38;gt;
&#38;lt;ul class=&#38;quot;sf-menu sf-js-enabled&#38;quot;&#38;gt;
&#38;lt;?php menusplus(1); ?&#38;gt;
&#38;lt;/ul&#38;gt;
&#38;lt;/div&#38;gt;

&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Furfur on "custom menu in thematic childtheme"</title>
<link>http://themeshaper.com/forums/topic/custom-menu-in-thematic-childtheme#post-11395</link>
<pubDate>Mon, 12 Apr 2010 22:13:28 +0000</pubDate>
<dc:creator>Furfur</dc:creator>
<guid isPermaLink="false">11395@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;never min I managed to get this sorted, thanks for the plugin reference and the help helgatheviking&#60;/p&#62;
&#60;p&#62;Jay
&#60;/p&#62;</description>
</item>
<item>
<title>Furfur on "custom menu in thematic childtheme"</title>
<link>http://themeshaper.com/forums/topic/custom-menu-in-thematic-childtheme#post-11391</link>
<pubDate>Mon, 12 Apr 2010 16:03:38 +0000</pubDate>
<dc:creator>Furfur</dc:creator>
<guid isPermaLink="false">11391@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;ok I've added the plugin and the code into the functions.php and it is kind of working, the only problem is the links are stacked instead of inline, any ideas?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "custom menu in thematic childtheme"</title>
<link>http://themeshaper.com/forums/topic/custom-menu-in-thematic-childtheme#post-11379</link>
<pubDate>Sun, 11 Apr 2010 22:05:48 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">11379@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I presume the link to your Gallery is supposed to be in the #menu2 id?  The fact that it is current NOT, explains why the background is appearing below instead of behind... they are being outputted as 2 separate things so they are getting stacked on top of each other.  &#60;/p&#62;
&#60;p&#62;Rather than try to figure out what isn't working, I will just point you to what I think is the easiest way to create a custom menu:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.keighl.com/plugins/menus-plus/&#34; rel=&#34;nofollow&#34;&#62;http://www.keighl.com/plugins/menus-plus/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I have used this and it is great.  Then you should be able to hook it into your theme all wrapped in a div (since if you are injecting it to the thematic_aboveheader you are really only inside the #wrapper div) w/ the following&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php

function childtheme_menu() { ?&#38;gt;

&#38;lt;div id=&#38;quot;aboveheader&#38;quot;&#38;gt;

&#38;lt;?php menusplus(#); ?&#38;gt;

&#38;lt;/div&#38;gt;

}

add_action( &#38;#39;thematic_aboveheader&#38;#39;, &#38;#39;childtheme_menu&#38;#39;);

?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;where the # is the number for the menu you are trying to use.
&#60;/p&#62;</description>
</item>
<item>
<title>Furfur on "custom menu in thematic childtheme"</title>
<link>http://themeshaper.com/forums/topic/custom-menu-in-thematic-childtheme#post-11377</link>
<pubDate>Sun, 11 Apr 2010 21:46:26 +0000</pubDate>
<dc:creator>Furfur</dc:creator>
<guid isPermaLink="false">11377@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I've been trying to add a custom menu in the thematic above header to display&#60;br /&#62;
a custom menu, but I get the problem that the background image for the menu is appearing below the menu istead of behind it&#60;/p&#62;
&#60;p&#62;the link to my site is &#60;a href=&#34;http://furfur.org&#34;&#62;Furfur.org&#60;/a&#62;&#60;br /&#62;
any help would be greatly appreciated.&#60;/p&#62;
&#60;p&#62;here's the function and css&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_menu() {
               echo &#38;#39;
                 &#38;lt;ul id=\&#38;#39;menu2\&#38;#39;&#38;gt; &#38;#39;.wp_list_bookmarks(&#38;#39;title_li=&#38;#38;categorize=0&#38;#38;category=2&#38;#39;) .&#38;#39; &#38;#39;;

      }

      add_action( &#38;#39;thematic_aboveheader&#38;#39;, &#38;#39;childtheme_menu&#38;#39; );&#60;/code&#62;&#60;/pre&#62;
&#60;pre&#62;&#60;code&#62;#menu2
{
    background: url(img/catbgnew2.png)repeat;
    height:10px;

}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and heres what firebug is outputting&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;li&#38;gt;
&#38;lt;a href=&#38;quot;http://gallery.furfur.org&#38;quot;&#38;gt;Gallery&#38;lt;/a&#38;gt;
&#38;lt;/li&#38;gt;
&#38;lt;ul id=&#38;quot;menu2&#38;quot;&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>

</channel>
</rss>
