<?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 Navigation problem</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Mon, 20 May 2013 04:06:17 +0000</pubDate>

<item>
<title>em hr on "custom Navigation problem"</title>
<link>http://themeshaper.com/forums/topic/custom-navigation-problem#post-14867</link>
<pubDate>Fri, 20 Aug 2010 06:08:21 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">14867@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Heads up using add_theme_support in this way is not advised&#60;/p&#62;
&#60;p&#62;ref: &#60;a href=&#34;http://themeshaper.com/forums/topic/add_theme_supportmenus&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/add_theme_supportmenus&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;-Gene
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "custom Navigation problem"</title>
<link>http://themeshaper.com/forums/topic/custom-navigation-problem#post-14355</link>
<pubDate>Wed, 04 Aug 2010 13:13:50 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">14355@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;glad it works.  off-topic: are there a lot of addons for opera?  i have gotten to love my ff extensions, but it can definitely be slow... and a memory hog.
&#60;/p&#62;</description>
</item>
<item>
<title>rawsta on "custom Navigation problem"</title>
<link>http://themeshaper.com/forums/topic/custom-navigation-problem#post-14352</link>
<pubDate>Wed, 04 Aug 2010 11:43:33 +0000</pubDate>
<dc:creator>rawsta</dc:creator>
<guid isPermaLink="false">14352@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;missed the float:left... haven't seen it before... but anyway...&#60;br /&#62;
your code brings me the desired custom menu into my sidebar.. works awesome&#60;/p&#62;
&#60;p&#62;i gave the menu item the class .menu1 when i made it.&#60;br /&#62;
i can change the classes in the menu editor so i can give every item a different background.&#60;br /&#62;
but it's good to have an overall class to set up the basics.&#60;/p&#62;
&#60;p&#62;I'm working with Dragonfly (firebug like included in Opera) because i'm not a big Firefox fan...firefox is too slow...&#60;/p&#62;
&#60;p&#62;Thanks a lot for your help.. everything is working and i can go on
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "custom Navigation problem"</title>
<link>http://themeshaper.com/forums/topic/custom-navigation-problem#post-14308</link>
<pubDate>Tue, 03 Aug 2010 14:09:38 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">14308@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;sorry missed that part about the version.  &#60;/p&#62;
&#60;p&#62;also there seems to be a float on the .menu a in default.css that is causing the links to line up horizontally.  your plugin is adding a .menu to the ul it creates, which then triggers the default.css stylesheet&#60;/p&#62;
&#60;p&#62;.menu a{&#60;br /&#62;
float: none;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;if you aren't already, you should try &#60;a href=&#34;http://getfirebug.com&#34; rel=&#34;nofollow&#34;&#62;http://getfirebug.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;what about this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function register_my_menu() {
	register_nav_menu( &#38;#39;primary-menu&#38;#39;, __( &#38;#39;Primary Menu&#38;#39; ) );
}
add_action( &#38;#39;init&#38;#39;, &#38;#39;register_my_menu&#38;#39; );

function sidebar_menu() {

wp_nav_menu( array( &#38;#39;theme_location&#38;#39; =&#38;gt; &#38;#39;primary-menu&#38;#39;,
					&#38;#39;container_id&#38;#39;=&#38;gt;&#38;#39;sidebar-menu&#38;#39;,
                    &#38;#39;menu_class&#38;#39; =&#38;gt; &#38;#39;custom&#38;#39;, 

) ); 

}

add_action(&#38;#39;thematic_abovemainasides&#38;#39;,&#38;#39;sidebar_menu&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;for me this adds an unstyled list above the sidebar since i assigned the menu a class of 'custom' which doesn't exist yet in the css.  or if you want to look similar to the sidebar styles you could add 'container_class' =&#38;gt; 'aside', to the array.
&#60;/p&#62;</description>
</item>
<item>
<title>rawsta on "custom Navigation problem"</title>
<link>http://themeshaper.com/forums/topic/custom-navigation-problem#post-14307</link>
<pubDate>Tue, 03 Aug 2010 13:39:32 +0000</pubDate>
<dc:creator>rawsta</dc:creator>
<guid isPermaLink="false">14307@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I use the latest stable thematic together with the latest wordpress version (see first post)&#60;/p&#62;
&#60;p&#62;in general i just want to get the Menu to work the way i want it.&#60;/p&#62;
&#60;p&#62;the Menu-widget is working so far.. i just have the problem the it shows horizontal.&#60;br /&#62;
But i need it vertical.&#60;/p&#62;
&#60;p&#62;i'll have a look at the post of Justin Tadlock and hope that i can find some helpful tips there.&#60;/p&#62;
&#60;p&#62;Thanks for your help
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "custom Navigation problem"</title>
<link>http://themeshaper.com/forums/topic/custom-navigation-problem#post-14302</link>
<pubDate>Tue, 03 Aug 2010 12:17:15 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">14302@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i just plugged it into my theme (used it before but couldnt remember) and i get a dropdown for &#34;Primary Menu&#34;.  do you not get that option in the backend?  are you using the latest stable dev release of thematic?  i just switched myself back to version to 0.9.6.2 (in the WP repository) and it says my theme supports zero menus, so that could be it.  &#60;/p&#62;
&#60;p&#62;you can get the latest thematic here:&#60;br /&#62;
&#60;a href=&#34;http://developing.thematic4you.com/thematic-development-release/&#34; rel=&#34;nofollow&#34;&#62;http://developing.thematic4you.com/thematic-development-release/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Your code will replace the standard #access.  If you want more then you need to define them.  Here is a great post on everything about the new menus&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menus&#34; rel=&#34;nofollow&#34;&#62;http://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menus&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;if you know you arent going to use dropdowns, then you might want to filter away the the suckerfish scripts to make your pages a little lighter.  there is a post/article on that somewhere on themeshaper.
&#60;/p&#62;</description>
</item>
<item>
<title>rawsta on "custom Navigation problem"</title>
<link>http://themeshaper.com/forums/topic/custom-navigation-problem#post-14301</link>
<pubDate>Tue, 03 Aug 2010 10:10:31 +0000</pubDate>
<dc:creator>rawsta</dc:creator>
<guid isPermaLink="false">14301@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;OK... here's the link: &#60;a href=&#34;http://www.rawsta.de/richie/&#34; rel=&#34;nofollow&#34;&#62;http://www.rawsta.de/richie/&#60;/a&#62;  (child theme)&#60;/p&#62;
&#60;p&#62;i wanted to use the Custom Navigation (Design -&#38;gt; Menus) feature and added this code to the functions.php&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_theme_support( &#38;#39;menus&#38;#39; );

function child_access_menu() {
$menu_sys = &#38;#39;wp_nav_menu&#38;#39;;
return $menu_sys;
}
add_filter(&#38;#39;thematic_menu_type&#38;#39;, &#38;#39;child_access_menu&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;the field (Theme Location) says :&#34;Your theme supports 1 menu. Select which menu you would like to use.&#34;&#60;br /&#62;
But the Menu doesn't show up.. maybe i did something wrong or forgot something.&#60;/p&#62;
&#60;p&#62;so i used the &#34;Custom Menu&#34; Widget.&#60;/p&#62;
&#60;p&#62;I don't think that this widget uses the suckerfish Menu and i don't need dropdowns.&#60;/p&#62;
&#60;p&#62;I just started to work with Thematic...maybe i just forgot something...
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "custom Navigation problem"</title>
<link>http://themeshaper.com/forums/topic/custom-navigation-problem#post-14296</link>
<pubDate>Tue, 03 Aug 2010 04:39:53 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">14296@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;got a link?  what do you mean a theme location won't work?  what code are you using? what kind of errors are you getting?  you need to provide a lot more info.  the suckerfish-style menu is meant to be horizontal.  they menu (ul.sf-menu) is made horizontal by floating the li elements.&#60;/p&#62;
&#60;p&#62;.sf-menu li{&#60;br /&#62;
float: left;}&#60;/p&#62;
&#60;p&#62;if you change that to &#60;/p&#62;
&#60;p&#62;sf-menu li{&#60;br /&#62;
float: none;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;they will stack up.  however, dropdowns are now mucked up and will require fixing.
&#60;/p&#62;</description>
</item>
<item>
<title>rawsta on "custom Navigation problem"</title>
<link>http://themeshaper.com/forums/topic/custom-navigation-problem#post-14249</link>
<pubDate>Sun, 01 Aug 2010 21:56:39 +0000</pubDate>
<dc:creator>rawsta</dc:creator>
<guid isPermaLink="false">14249@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm working on an artist page and have a little problem with the new custom navigation (wordpress 3.0.1 + thematic-rev682)&#60;/p&#62;
&#60;p&#62;I have a Theme Location that not seem to work so i tried the custom-navigation-widget what seem to work fine.&#60;br /&#62;
but my problem is that all items align horizontal.&#60;br /&#62;
But i want them vertical.&#60;/p&#62;
&#60;p&#62;display:block doesn't work&#60;/p&#62;
&#60;p&#62;any idea what i'm doing wrong ?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
