Section Header - problem with links
Re: Section Header - problem with links
A link to the site would help...
Re: Section Header - problem with links
Go to menu manager and import the cssmenu.tpl into DB then open it and look at the part about "if sectioheader and ***" menuactive menuparent etc. where it adds all this...
<li class="menuactive menuparent parent"><a class="menuactive menuparent parent" href="#">
<li class="menuactive menuparent parent"><a class="menuactive menuparent parent" href="#">
Re: Section Header - problem with links
What version of CMSMS?...
Sorry should have asked this first thing, actually you should have said in first post...
Sorry should have asked this first thing, actually you should have said in first post...
Re: Section Header - problem with links
It seems to be coming from this line, last in menu template...
href="{$node->url}"><span>{$node->menutext}</span></a>
Since there is no URL it inserts the #, I would just for a test add a number in it to see...
href="6{$node->url}"><span>{$node->menutext}</span></a>
If that is where it comes from you can do an {if $node->type == 'sectionheader'} {else}href="{$node->url}"{/if}>
href="{$node->url}"><span>{$node->menutext}</span></a>
Since there is no URL it inserts the #, I would just for a test add a number in it to see...
href="6{$node->url}"><span>{$node->menutext}</span></a>
If that is where it comes from you can do an {if $node->type == 'sectionheader'} {else}href="{$node->url}"{/if}>
Re: Section Header - problem with links
Did you try using the code I posted in the menu where you say it gets the # ?...