Log in

View Full Version : How do I add another item to the navbar


jtorral
01-19-2005, 04:57 PM
I want to add one more item to my navbar in vp 3.06 cant figure this one out when compared to 2.0.9 Can someone help please. I need my Gallery Link to show up on the navbar. I am trying to use aqua-soft skin.

Thanks

neocorteqz
01-19-2005, 06:26 PM
I want to add one more item to my navbar in vp 3.06 cant figure this one out when compared to 2.0.9 Can someone help please. I need my Gallery Link to show up on the navbar. I am trying to use aqua-soft skin.

Thanks In your admin panel, navigate to the Navigation & Breadcrumb > Navbar template, then add this code substituting the address of your gallery.

Anywhere After this code


<!-- nav buttons bar -->
<div align="center">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
<tr align="center">


ADD:


<td class="vbmenu_control"><a href="http://www.yoursite.com/gallery/">Gallery</a></td>


If you want you can create a Global phrase called site_gallery

and call it this way


<td class="vbmenu_control"><a href="http://www.yoursite.com/gallery/">$vbphrase[site_gallery]</a></td>


I find using custom phrases are easier, and if it's a global phrase you can call to it in other templates. You can name the phrase whatever you'd like as long as it's not already a phrase.

As long as you add the code above between
<!-- nav buttons bar -->
and
<!-- / nav buttons bar -->

it will show up in the navbar.