adding extra nav button in enlighten template?

Jan38

New Member
hi all, how do i add an extra button to my navbar in the enlighten template?

i found the location (header) but adding a correct link is another part .....

anyone who knows it?

TIA
 
Find:
HTML:
<td class="h_nav"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
<td><img src="$stylevar[imgdir_misc]/nav_div.gif" alt="" /></td>

add after:
HTML:
<td class="h_nav"><a href="YOURLINK">YOURLINK TITLE</a></td>
<td><img src="$stylevar[imgdir_misc]/nav_div.gif" alt="" /></td>

This will add your link after the FAQ link :)
 
Jan38 said:
hi all, how do i add an extra button to my navbar in the enlighten template?

i found the location (header) but adding a correct link is another part .....

anyone who knows it?

TIA
Go to... Styles & Templates > Edit Template for enlighten > Navigation / Breadcrumb Templates > navbar >
Then Add the new td
I often used
PHP:
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
To add links in the nave bar..
PHP:
<td class="vbmenu_control"><a href="URL HERE">[color="DarkGreen"]LINK TITLE HERE[/COLOR</a></td>
You can add new code below or above the calender code If your navbar has more space for the new link,,,
Check this... Also.. http://www.vbteam.info/trash/4485-req-ultimate-navbar-vb3-7-a.html
 
Hoxxy said:
Find:
HTML:
<td class="h_nav"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
<td><img src="$stylevar[imgdir_misc]/nav_div.gif" alt="" /></td>

add after:
HTML:
<td class="h_nav"><a href="YOURLINK">YOURLINK TITLE</a></td>
<td><img src="$stylevar[imgdir_misc]/nav_div.gif" alt="" /></td>

This will add your link after the FAQ link :)

Hoxxy thanks for the quick reply, the yourlink item can that also be a link like /forum.php?
 
NAZIA said:
Go to... Styles & Templates > Edit Template for enlighten > Navigation / Breadcrumb Templates > navbar >
Then Add the new td
I often used
PHP:
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
To add links in the nave bar..
PHP:
<td class="vbmenu_control"><a href="URL HERE">[color="DarkGreen"]LINK TITLE HERE[/COLOR</a></td>
You can add new code below or above the calender code If your navbar has more space for the new link,,,
Check this... Also.. http://www.vbteam.info/trash/4485-req-ultimate-navbar-vb3-7-a.html

Hi nazia,

thanks for the reply.

this seems to be another integration of a new button then hoxxy's explanation.....

which one is the good one? or are they both okay?
 
NAZIA's version is the standard way to add a link to vBulletin..

My way is specificlly for the Enlighten style :)

Hoxxy thanks for the quick reply, the yourlink item can that also be a link like /forum.php?
Yes
 
Hoxxy said:
Find:
HTML:
<td class="h_nav"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
<td><img src="$stylevar[imgdir_misc]/nav_div.gif" alt="" /></td>

add after:
HTML:
<td class="h_nav"><a href="YOURLINK">YOURLINK TITLE</a></td>
<td><img src="$stylevar[imgdir_misc]/nav_div.gif" alt="" /></td>

This will add your link after the FAQ link :)

THANKS Hoxxy...........

it works!

great!

Thanks
 
Back
Top