Header bar menu system?

monkeyra

Member
Hi,

I've tried searching for the keyword menu, but can't find what I'm after.

Is there anything available that will enable me to have a custom menu, instead of the default Home, forums, Members, Help etc.

I've seen a few addons which ADD to the existing menu, but I then can't remove all the default stuff.
 
I'm not an expert but have you looked in the template files for 'navigation' ?
 
in the navigation template to remove the home tab

find

Code:
<!-- home -->
        <xen:if is="{$showHomeLink}">
            <li class="navTab home PopupClosed"><a href="{$homeLink}" class="navLink">{xen:phrase home}</a></li>
        </xen:if>

and wrap these tags around it

Code:
<xen:comment></xen:comment>

all the other tabs are in there too
 
  • Like
Reactions: LPH
Top Bottom