OK.. Got it working. Set 'minimal_menu.tpl' to be the default. simple_navigation.tpl adds 'class="parent"' to the "Our Services" link, which breaks the javascript for some reason, minimal.tpl doesn't do this (and also gets rid of the <span></span> around the menu items)
If you want to set the parent to be <a href="#"> then do the following:
set content type of "Our Services" to be Section Header. The issue is that this is now no longer a link, and the click-to-expand no longer works.
You will have to clone the minimal_menu.tpl template, and set it to default.
Change:
Code: Select all
{elseif $node->type == 'sectionheader'}
<li class="sectionheader">{$node->menutext}
to
Code: Select all
{elseif $node->type == 'sectionheader'}
<li class="sectionheader"><a href="#">{$node->menutext}</a>
See it at:
http://artemis.teamwishbone.com/
tested in Chrome, IE and FF.