Simply the best one double navigation bar ^^ - Installed - Tagged - Nominated
Perfect in 3.8.7
PS
Should be correct (i'm not a programmer) if i add a "<a href>" like this for add in the navigationbar some category or forums link?
For example, the default href is:
Code:
<!-- top nav buttons bar -->
<div class="tborder" style="padding:1px; border-bottom-width:0px">
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr align="center">
<td class="vbmenu_control"><a href="index.php?$session[sessionurl]">Home</a></td>
<td class="vbmenu_control">
I want to add some of similar:
Code:
<!-- top nav buttons bar -->
<div class="tborder" style="padding:1px; border-bottom-width:0px">
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr align="center">
<td class="vbmenu_control"><a href="http://www.myforum.com/forumdisplay.php?f=4">Home</a></td>
<td class="vbmenu_control">
I don't know what is the correct sintax to add href like your :
Code:
a href="index.php?$session[sessionurl]
this is not correct i think :S
Code:
<!-- top nav buttons bar -->
<div class="tborder" style="padding:1px; border-bottom-width:0px">
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr align="center">
<td class="vbmenu_control"><a href="forumdisplay.php?f=4$session[sessionurl]">Home</a></td>
<td class="vbmenu_control">....
Can you help me?