I think everyone has encountered the situation at some point or other where their navbar has got very cluttered and they are faced with either adding yet another navbar, or adding some dropdown menus to group some items.
This tutorial explains how to create an additional drop down menu in your navbar.
Firstly, locate in your navbar template the first instace of
Replace Custom Menu with the title for this menu which you want displayed on your navbar and custommenu with the name that you want to give your link. Note that spaces are not to be used as this will break the connection with the actual menu.
Again replace custommenu with the name given to your link. Make sure that you leave the _menu after it as this identifies it as the menu part of the link. Also replace Custom Menu again with the title that you have used for your link.
The content row should be replaced with the actual menu item that you want to have in your new drop down menu.
as required to add additional links onto your menu.
If you wish to break your menu into sections like the quicklinks use then add
Code:
<tr>
<td class="thead">Custom Menu</td>
</tr>
everywhere that you wish to add a new header.
The content added should be in the normal html format for links.
If you wish to add more than one menu, repeat the process for each one, ensuring that you use a different name for each menu otherwise they will not function correctly.
well... after hours of screwing around with this... i've given up
even copying and pasting everything word for word in the exact location it still isn't working on 3.8.0.... guess i'll have to find a different way to do this
Is it somehow possible to make these drop-down menus dependent on which sub-forum is being viewed? So that the links in the menu are different for different sub-forums.
Is it somehow possible to make these drop-down menus dependent on which sub-forum is being viewed? So that the links in the menu are different for different sub-forums.
You would have to wrap a condition around stuff:
HTML Code:
<if condition="$forumid == '5'">
stuff just for when you are in forumid 5
</if>
I got the working almost perfectly, but... on existing dropdowns like search, or quicklinks, the dropdown menu aligns with the left of the link. However on the new dropdown menu that I added, the dropdown appears further to the left of the link, like its centered under the left side of the link. What can I do about this?
I've used this tutorial to create a new drop down on my navbar, It does appear on the navbar, however, when clicking on the menu, the drop down appears on the left side of the cell, rather than the center, like my other drop downs.
I can't seem to find the correct verbiage to resolve this.