Help Whit navbar/header modification

Amapola

New Member
Hi..

My problem is the next:

I've a forum with Satellite Skin. And I wanna do a menu, like "Quick Links" menu, with 2 options.

Thats have to be something like this:

- Test 1 (Like Quick Link menu)
-- Google (Linked to www.google.com.ar) -> Like "Edit Signature"
-- Yahoo (Linked to www.yahoo.com.ar) -> Like "Edit Signature"
 
This isn't exactly what your asking for but you could just add your links to the Quick Links menu by doing this:

Open the navbar template
Find:
PHP:
<if condition="$show['wollink']"><tr><td class="vbmenu_option"><a href="online.php$session[sessionurl_q]">$vbphrase[whos_online]</a></td></tr></if>

Add this below:

PHP:
<if condition="$show['wollink']"><tr><td class="vbmenu_option"><a href="YOUR LINK HERE">URL NAME</a></td></tr></if>

change YOUR LINK HERE and URL NAME to your values

You can use this code as many times as you want.
Hope this helps you.
 
Back
Top