Thanks for this! - wonderful addition to a great modification. :up:
Quote:
Originally Posted by alkatraz
since my navbar is sorta customized already i'm too lazy to cut and paste step by step instructions, but here's a quick run down
- I did the mod as instructed first
- then I moved the part that goes beside "New Posts" so it was beside "UserCP"
ah screw it, here's the bits of code you can figure it out it's pretty easy =)
basicaly I replaced the bits within the USERCP <td>'s with:
Code:
<a href="usercp.php$session[sessionurl_q]">My Account</a> <span id="navbar_myposts"><script type="text/javascript"> vbmenu_register("navbar_myposts"); </script></span>
and here's what my dropdown setup is like:
Code:
<!-- My Posts Menu -->
<div class="vbmenu_popup" id="navbar_myposts_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">My Account</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="usercp.php$session[sessionurl_q]">My Account Settings</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=finduser&u=$bbuserinfo[userid]">View My Posts</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">View My Threads</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="member.php?u=$bbuserinfo[userid]">View My Profile</a></td>
</tr>
</table>
</div>
<!-- / My Posts Menu -->
|