Quote:
Originally Posted by sinn3d
I hope this is right, here's some of them:
<!-- 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" style="height: 24px;">
<if condition="$show['member']">
<td class="topnav"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td>
</if>
<if condition="$show['registerbutton']">
<td class="topnav"><a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></td>
</if>
<td class="topnav"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
<td class="topnav"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td>
<td class="topnav"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
<if condition="$show['popups']">
|
Yeah that looks like it.
You custom style is using a different name to the default one (vbmenu_control).
Code:
<td class="topnav"><a href="billspaypal.php?">$vbphrase[billspp_donate]</a></td>
should do the trick.
So, If we want to have the link between your FAQ and Members you need to find
Code:
<td class="topnav"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
<td class="topnav"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td>
and change it to
Code:
<td class="topnav"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
<td class="topnav"><a href="billspaypal.php?">$vbphrase[billspp_donate]</a></td>
<td class="topnav"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td>
Hope that make sense