PDA

View Full Version : Question about the menu bar


petertdavis
02-10-2006, 08:24 PM
Hi,
Could someone please tell me how to take the FAQ, Members List, and Calendar links off the menu bar and put them in the Quick Links drop down menu?
Thanks!

Darat
02-11-2006, 09:47 AM
You need to edit the navbar template:

Find this line:

<td class="vbmenu_control"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>


Delete it:

Find this line:

<tr><td class="thead">$vbphrase[quick_links]</td></tr>


That is the start of the Quick Links menu

Look where you want to add the FAQ link and then add:

<tr><td class="vbmenu_option"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td></tr>


Then just repeat that for the other links you want to move.

(The key changes are to add <tr> </tr> around the link and to change the type of link from "vbmenu_control" "vbmenu_option" )


(I've not tested this.)