<?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 Tag: superfish</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sat, 04 Feb 2012 04:30:54 +0000</pubDate>

<item>
<title>helgatheviking on "How to Style Custom Menu Like Main Menu"</title>
<link>http://themeshaper.com/forums/topic/how-to-style-custom-menu-like-main-menu#post-25043</link>
<pubDate>Wed, 25 Jan 2012 16:08:54 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25043@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i'd still do it w/ the registering of menus since you cannot filter the UL class into the wp_nav_menu() args for the widget.  i just checked.  &#60;/p&#62;
&#60;p&#62;you can add different menus on different pages w/ conditional logic&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Conditional_Tags&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Conditional_Tags&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;for instance if you register three menus: category-menu, page-menu and extra-menu:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function kia_conditional_menus(){
   if(is_category()){
       wp_nav_menu(array(&#38;#39;theme_location&#38;#39;  =&#38;gt; &#38;#39;category-menu&#38;#39;,&#38;#39;menu_class&#38;#39; =&#38;gt; &#38;#39;sf-menu&#38;#39;));
   } elseif (is_page()){
       wp_nav_menu(array(&#38;#39;theme_location&#38;#39;  =&#38;gt; &#38;#39;page-menu&#38;#39;,&#38;#39;menu_class&#38;#39; =&#38;gt; &#38;#39;sf-menu&#38;#39;));
   } else {
       wp_nav_menu(array(&#38;#39;theme_location&#38;#39;  =&#38;gt; &#38;#39;extra-menu&#38;#39;,&#38;#39;menu_class&#38;#39; =&#38;gt; &#38;#39;sf-menu&#38;#39;));
  }
}
add_action(&#38;#39;thematic_abovemainasides&#38;#39;,&#38;#39;kia_conditional_menus&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;untested so if you get a white screen of death it could be syntax, but assuming no parse errors it should work
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "How to Style Custom Menu Like Main Menu"</title>
<link>http://themeshaper.com/forums/topic/how-to-style-custom-menu-like-main-menu#post-25042</link>
<pubDate>Wed, 25 Jan 2012 15:25:38 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">25042@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Not sure if it will help in @danromanchik's case, but I use Dynamic Widgets =&#38;gt; &#60;a href=&#34;http://wordpress.org/extend/plugins/dynamic-widgets/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/dynamic-widgets/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It gives me very easy and granular control over custom menu(s) placements.
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "How to Style Custom Menu Like Main Menu"</title>
<link>http://themeshaper.com/forums/topic/how-to-style-custom-menu-like-main-menu#post-25041</link>
<pubDate>Wed, 25 Jan 2012 14:57:45 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">25041@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;You can register as many menus as you like. When you add them in to an action hook you'll need to set a condition for the menu appearing or not.
&#60;/p&#62;</description>
</item>
<item>
<title>danromanchik on "How to Style Custom Menu Like Main Menu"</title>
<link>http://themeshaper.com/forums/topic/how-to-style-custom-menu-like-main-menu#post-25040</link>
<pubDate>Wed, 25 Jan 2012 14:50:48 +0000</pubDate>
<dc:creator>danromanchik</dc:creator>
<guid isPermaLink="false">25040@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The reason that I opted to go with the widget approach is that I want different menus to show up on different pages. Can I still do this by registering different menus?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "How to Style Custom Menu Like Main Menu"</title>
<link>http://themeshaper.com/forums/topic/how-to-style-custom-menu-like-main-menu#post-25035</link>
<pubDate>Wed, 25 Jan 2012 04:08:05 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25035@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;lol!  thanks for the vote of confidence @danromanchik.
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "How to Style Custom Menu Like Main Menu"</title>
<link>http://themeshaper.com/forums/topic/how-to-style-custom-menu-like-main-menu#post-25034</link>
<pubDate>Tue, 24 Jan 2012 22:08:34 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">25034@http://themeshaper.com/forums/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;registering a secondary menu location and adding it to a hook&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;...is the winning combo IMO
&#60;/p&#62;</description>
</item>
<item>
<title>danromanchik on "How to Style Custom Menu Like Main Menu"</title>
<link>http://themeshaper.com/forums/topic/how-to-style-custom-menu-like-main-menu#post-25033</link>
<pubDate>Tue, 24 Jan 2012 22:01:04 +0000</pubDate>
<dc:creator>danromanchik</dc:creator>
<guid isPermaLink="false">25033@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Dang. If helga doesn't know how to do it, do I have any hope? :)
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "How to Style Custom Menu Like Main Menu"</title>
<link>http://themeshaper.com/forums/topic/how-to-style-custom-menu-like-main-menu#post-25021</link>
<pubDate>Tue, 24 Jan 2012 20:06:26 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25021@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;to have the same style you need to use the same class.  so the UL element needs the class sf-menu  i'm not sure this is possible with a widget.  you might be better-served by registering a secondary menu location and adding it to a hook
&#60;/p&#62;</description>
</item>
<item>
<title>danromanchik on "How to Style Custom Menu Like Main Menu"</title>
<link>http://themeshaper.com/forums/topic/how-to-style-custom-menu-like-main-menu#post-25019</link>
<pubDate>Tue, 24 Jan 2012 19:32:05 +0000</pubDate>
<dc:creator>danromanchik</dc:creator>
<guid isPermaLink="false">25019@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have a site with the main menu running across the top. By reading the great postings here, I've been able to get the styling just right including background colors, rollovers, and drop-downs.&#60;/p&#62;
&#60;p&#62;I have also created a secondary navigation menu, and, using the Custom Widget sidebar,  I have put this menu in the secondary aside. What I'd really like to do, however, is to use the styling of the main menu on this secondary menu, so that the rollovers and drop-downs work just like they do for the main menu. &#60;/p&#62;
&#60;p&#62;How do I do this?&#60;/p&#62;
&#60;p&#62;Thanks, Dan
&#60;/p&#62;</description>
</item>
<item>
<title>drewdavid on "Time Delay on Dropdown Menu..."</title>
<link>http://themeshaper.com/forums/topic/time-delay-on-dropdown-menu#post-24340</link>
<pubDate>Fri, 16 Dec 2011 22:14:41 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24340@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ok thanks. :)&#60;/p&#62;
&#60;p&#62;Drew
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "Time Delay on Dropdown Menu..."</title>
<link>http://themeshaper.com/forums/topic/time-delay-on-dropdown-menu#post-24339</link>
<pubDate>Fri, 16 Dec 2011 22:09:15 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">24339@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I grabbed the function from the header-extensions.php file and used the override. It is intended to be thrown in your functions.php. You are correct. ;)
&#60;/p&#62;</description>
</item>
<item>
<title>drewdavid on "Time Delay on Dropdown Menu..."</title>
<link>http://themeshaper.com/forums/topic/time-delay-on-dropdown-menu#post-24338</link>
<pubDate>Fri, 16 Dec 2011 21:57:30 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24338@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks, and is this code all found in header-extensions.php? Just wanting to make sure...&#60;/p&#62;
&#60;p&#62;...Or is this what I plug in to my child theme's functions.php file?&#60;/p&#62;
&#60;p&#62;Thank you. :)
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "Time Delay on Dropdown Menu..."</title>
<link>http://themeshaper.com/forums/topic/time-delay-on-dropdown-menu#post-24337</link>
<pubDate>Fri, 16 Dec 2011 21:52:30 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">24337@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The code I posted has hoverIntent.js already removed. &#60;/p&#62;
&#60;p&#62;I removed this line &#60;code&#62;$scripts .= $scriptdir_start . &#38;#39;hoverIntent.js&#38;#39; . $scriptdir_end . &#38;quot;\n&#38;quot;;&#60;/code&#62;.
&#60;/p&#62;</description>
</item>
<item>
<title>drewdavid on "Time Delay on Dropdown Menu..."</title>
<link>http://themeshaper.com/forums/topic/time-delay-on-dropdown-menu#post-24336</link>
<pubDate>Fri, 16 Dec 2011 21:38:22 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24336@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Scott,&#60;/p&#62;
&#60;p&#62;When you say &#34;remove it&#34;, do you mean remove the file hoverIntent.js, or the code that you mention above which is contained in some (which?) file? If the latter, should I tear out all of that code shown?&#60;/p&#62;
&#60;p&#62;Thank you for your help! :)
&#60;/p&#62;</description>
</item>
<item>
<title>drewdavid on "Time Delay on Dropdown Menu..."</title>
<link>http://themeshaper.com/forums/topic/time-delay-on-dropdown-menu#post-24334</link>
<pubDate>Fri, 16 Dec 2011 21:25:48 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24334@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks Scott!
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "Time Delay on Dropdown Menu..."</title>
<link>http://themeshaper.com/forums/topic/time-delay-on-dropdown-menu#post-24328</link>
<pubDate>Fri, 16 Dec 2011 01:06:52 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">24328@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;You may want to modify two things. First the initial hover (mouseover) is controlled by hoverIntent.js&#60;/p&#62;
&#60;p&#62;Just remove it.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// Load scripts for the jquery Superfish minus hoverIntent.js
function childtheme_override_head_scripts() {
	$scriptdir_start = &#38;quot;\t&#38;quot;;
	$scriptdir_start .= &#38;#39;&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;&#38;#39;;
	$scriptdir_start .= get_bloginfo(&#38;#39;template_directory&#38;#39;);
	$scriptdir_start .= &#38;#39;/library/scripts/&#38;#39;;

	$scriptdir_end = &#38;#39;&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;&#38;#39;;

	$scripts = &#38;quot;\n&#38;quot;;
	$scripts .= $scriptdir_start . &#38;#39;superfish.js&#38;#39; . $scriptdir_end . &#38;quot;\n&#38;quot;;
	$scripts .= $scriptdir_start . &#38;#39;supersubs.js&#38;#39; . $scriptdir_end . &#38;quot;\n&#38;quot;;
	$dropdown_options = $scriptdir_start . &#38;#39;thematic-dropdowns.js&#38;#39; . $scriptdir_end . &#38;quot;\n&#38;quot;;

	$scripts = $scripts . apply_filters(&#38;#39;thematic_dropdown_options&#38;#39;, $dropdown_options);

		$scripts .= &#38;quot;\n&#38;quot;;
		$scripts .= &#38;quot;\t&#38;quot;;
		$scripts .= &#38;#39;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
		$scripts .= &#38;quot;\t\t&#38;quot; . &#38;#39;/*&#38;lt;![CDATA[*/&#38;#39; . &#38;quot;\n&#38;quot;;
		$scripts .= &#38;quot;\t\t&#38;quot; . &#38;#39;jQuery.noConflict();&#38;#39; . &#38;quot;\n&#38;quot;;
		$scripts .= &#38;quot;\t\t&#38;quot; . &#38;#39;/*]]&#38;gt;*/&#38;#39; . &#38;quot;\n&#38;quot;;
		$scripts .= &#38;quot;\t&#38;quot;;
		$scripts .= &#38;#39;&#38;lt;/script&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;

	// Print filtered scripts
	print apply_filters(&#38;#39;thematic_head_scripts&#38;#39;, $scripts);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;There will also be a delay when you are no longer have your cursor there (mouseout), check into #8 at &#60;a href=&#34;http://themeshaper.com/forums/topic/thematic-menus-demystified-1&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/thematic-menus-demystified-1&#60;/a&#62; you will see where the delay is.
&#60;/p&#62;</description>
</item>
<item>
<title>drewdavid on "Time Delay on Dropdown Menu..."</title>
<link>http://themeshaper.com/forums/topic/time-delay-on-dropdown-menu#post-24323</link>
<pubDate>Thu, 15 Dec 2011 20:36:57 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24323@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi I'd like to disable the time delay when hovering over the dropdown menu. I'd like it to drop down immediately!&#60;/p&#62;
&#60;p&#62;Could someone advise me on where this variable is located? Thanks so much. :)&#60;/p&#62;
&#60;p&#62;Best Regards,&#60;/p&#62;
&#60;p&#62;Drew
&#60;/p&#62;</description>
</item>
<item>
<title>elderberry on "Making Superfish work on an iphone?"</title>
<link>http://themeshaper.com/forums/topic/making-superfish-work-on-an-iphone#post-23663</link>
<pubDate>Tue, 01 Nov 2011 16:50:56 +0000</pubDate>
<dc:creator>elderberry</dc:creator>
<guid isPermaLink="false">23663@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Has anyone made the superfish menu work on an iphone? I find that the dropdowns (on a horizontal menu) are not touchable, trying to access them always leads to the parent page.&#60;/p&#62;
&#60;p&#62;Is there javascript or css that is useful?
&#60;/p&#62;</description>
</item>
<item>
<title>jeffeggleston on "Nivo Slider overlapping Superfish dropdown"</title>
<link>http://themeshaper.com/forums/topic/nivo-slider-overlapping-superfish-dropdown#post-23639</link>
<pubDate>Fri, 28 Oct 2011 15:36:54 +0000</pubDate>
<dc:creator>jeffeggleston</dc:creator>
<guid isPermaLink="false">23639@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I am a bit new to AJAX and Javascript in general and was having some trouble with the Nivo Slider overlapping the dropdown menu created by Superfish. I messed with it repeatedly, changing the z-index on a number of CSS items, before changing the z-index of the #header to 15 (from 2) which fixed everything. I am just posting this for any newbies that may have had the same issue and fiddled with it as long as I did. Hope that helps.
&#60;/p&#62;</description>
</item>
<item>
<title>logostar on "suckerfish nav-bar style"</title>
<link>http://themeshaper.com/forums/topic/suckerfish-nav-bar-style#post-22628</link>
<pubDate>Thu, 11 Aug 2011 14:30:14 +0000</pubDate>
<dc:creator>logostar</dc:creator>
<guid isPermaLink="false">22628@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Here is the link to the solution&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/forums/topic/create-horizontal-dropdown-child-menu-that-holds-on-subpage&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/create-horizontal-dropdown-child-menu-that-holds-on-subpage&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "suckerfish nav-bar style"</title>
<link>http://themeshaper.com/forums/topic/suckerfish-nav-bar-style#post-22625</link>
<pubDate>Thu, 11 Aug 2011 14:17:49 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22625@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;can you share the solution in case someone else finds this thread?
&#60;/p&#62;</description>
</item>
<item>
<title>logostar on "suckerfish nav-bar style"</title>
<link>http://themeshaper.com/forums/topic/suckerfish-nav-bar-style#post-22623</link>
<pubDate>Thu, 11 Aug 2011 13:39:30 +0000</pubDate>
<dc:creator>logostar</dc:creator>
<guid isPermaLink="false">22623@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I found the solution here on the forum!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "suckerfish nav-bar style"</title>
<link>http://themeshaper.com/forums/topic/suckerfish-nav-bar-style#post-22382</link>
<pubDate>Wed, 20 Jul 2011 04:14:36 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22382@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i really have no idea how to make superfish work the way you want.  but you can see this thread for how to add scripts to the header:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://themeshaper.com/forums/topic/jquery-in-thematic-demystified&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/jquery-in-thematic-demystified&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>logostar on "suckerfish nav-bar style"</title>
<link>http://themeshaper.com/forums/topic/suckerfish-nav-bar-style#post-22376</link>
<pubDate>Tue, 19 Jul 2011 15:32:37 +0000</pubDate>
<dc:creator>logostar</dc:creator>
<guid isPermaLink="false">22376@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I did included sf-navbar and while it did give the appearance of said link, It did not display as the site showed. As i've mentioned above &#60;/p&#62;
&#60;p&#62;$(document).ready(function(){&#60;br /&#62;
$(&#34;ul.sf-menu&#34;).superfish({&#60;br /&#62;
pathClass: 'current'&#60;br /&#62;
});&#60;br /&#62;
});&#60;/p&#62;
&#60;p&#62;could be whats required. How can I achieve this?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "suckerfish nav-bar style"</title>
<link>http://themeshaper.com/forums/topic/suckerfish-nav-bar-style#post-22375</link>
<pubDate>Tue, 19 Jul 2011 15:10:18 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22375@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;sf-navbar ISN'T added to the menu by default.  you'll need to filter the menu arguments.&#60;/p&#62;
&#60;p&#62;something like this ought to do that:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// change the default arguments for wp_page_menu()
function child_nav_menu_args($args) {
	$args[&#38;#39;menu_class&#38;#39;] = &#38;#39;sf-menu sf-navbar&#38;#39;;
	return $args;
}
add_filter(&#38;#39;thematic_nav_menu_args&#38;#39;,&#38;#39;child_nav_menu_args&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;whether that makes the whole thing work like you're hoping, i couldn't say.
&#60;/p&#62;</description>
</item>
<item>
<title>logostar on "suckerfish nav-bar style"</title>
<link>http://themeshaper.com/forums/topic/suckerfish-nav-bar-style#post-22373</link>
<pubDate>Tue, 19 Jul 2011 14:37:30 +0000</pubDate>
<dc:creator>logostar</dc:creator>
<guid isPermaLink="false">22373@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Has anyone figured how to allow the sub links to be displayed once the current parent page is selected?
&#60;/p&#62;</description>
</item>
<item>
<title>logostar on "suckerfish nav-bar style"</title>
<link>http://themeshaper.com/forums/topic/suckerfish-nav-bar-style#post-22352</link>
<pubDate>Mon, 18 Jul 2011 00:32:11 +0000</pubDate>
<dc:creator>logostar</dc:creator>
<guid isPermaLink="false">22352@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thank you Helga! Seems to me that I haven't noticed sf-navbar to be added to sf-menu class (using child theme)&#60;/p&#62;
&#60;p&#62;Am I missing something? The sub links only seem to show up when hovering over the parent link. Would the code below allow it to work? &#60;/p&#62;
&#60;p&#62;( $(document).ready(function(){&#60;br /&#62;
        $(&#34;ul.sf-menu&#34;).superfish({&#60;br /&#62;
            pathClass:  'current'&#60;br /&#62;
        });&#60;br /&#62;
    }); )
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "suckerfish nav-bar style"</title>
<link>http://themeshaper.com/forums/topic/suckerfish-nav-bar-style#post-22351</link>
<pubDate>Sun, 17 Jul 2011 15:53:45 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22351@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;found example 4&#60;/p&#62;
&#60;p&#62;you need to use their stylesheet&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://users.tpg.com.au/j_birch/plugins/superfish/css/superfish-navbar.css&#34; rel=&#34;nofollow&#34;&#62;http://users.tpg.com.au/j_birch/plugins/superfish/css/superfish-navbar.css&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;AND according to the stylesheet you also need to add the class sf-navbar in addition to sf-menu
&#60;/p&#62;</description>
</item>
<item>
<title>logostar on "suckerfish nav-bar style"</title>
<link>http://themeshaper.com/forums/topic/suckerfish-nav-bar-style#post-22349</link>
<pubDate>Sun, 17 Jul 2011 12:27:53 +0000</pubDate>
<dc:creator>logostar</dc:creator>
<guid isPermaLink="false">22349@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Yes, Thematic uses suckerfish. How can one achieve the styling as shown from the link above? Rather then have child links displayed vertically, how can I change the codes to have it look like sample 4 nav-bar style?&#60;/p&#62;
&#60;p&#62;I'm saying, its possible the classic template navigation was built to do so, however it doesn't seem to work. I tried including the additional css from the site but it doesn't make much difference - still in vertical view. &#60;/p&#62;
&#60;p&#62;[side note] I notice a section with the same issue, I tried their code and it doesnt work either.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "suckerfish nav-bar style"</title>
<link>http://themeshaper.com/forums/topic/suckerfish-nav-bar-style#post-22348</link>
<pubDate>Sat, 16 Jul 2011 21:26:38 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22348@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;don't understand your question.  thematic already uses superfish
&#60;/p&#62;</description>
</item>

</channel>
</rss>

