Quote:
Originally Posted by GSPFAN
Anyone know how to link ibank.php to the navbar?
|
Find this in your navbar template:
PHP Code:
<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">
<if condition="$show['member']">
<td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td>
</if>
<if condition="$show['registerbutton']">
<td class="vbmenu_control"><a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></td>
</if>
Add this code below it:
PHP Code:
<td class="vbmenu_control"><a href="http://www.yoursite.com/forums/ibank.php">IBank</a></td>
The url is where your IBank.php file is resting. For those users who are running cmps, I would recommend you place it in your "site navigation" module like I have it
here. I used to have it in my navbar but then it started to get cluttered. Plus, I didn't want to use double navbars anyways.
Note: This is just a basic location that will appear to the right of your User CP link that's first in line by default. Depending on your taste, you can place this anywhere you wish.