"Quick Links" Menu in three columns
Mod Version: 1.00, by Snort_2005
This modification is in the archives.
vB Version: 3.5.0 RC2 |
Rating: (1 vote - 5.00 average) |
Installs: 6 |
Released: 29 Aug 2005 |
Last Update: 30 Aug 2005 |
Downloads: 6 |
Not Supported
Template Edits
|
This is my first time ever releasing something like this so don't byte.
Ever got annoyed how the quick links menu was a tad tall? (those of you with the lower resolutions.) I have devised a solution.
Installation:
- Login to your Admin Control panel and open the style manager.
- Edit the templates of the style you wish to apply this to.
- Double-click Navigation / Breadcrumb Templates to expand it.
- Double-click the template bit "navbar".
- Find
Code:
<!-- user cp tools menu -->
<div class="vbmenu_popup" id="usercptools_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">$vbphrase[quick_links]</td></tr>
<if condition="$vboptions['enablesearches']"><tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily">$vbphrase[todays_posts]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td></tr>
<tr><td class="vbmenu_option"><a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300'); return false;">$vbphrase[open_buddy_list]</a></td></tr>
<tr><td class="thead"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_control_panel]</a></td></tr>
<if condition="$show['siglink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editsignature">$vbphrase[edit_signature]</a></td></tr></if>
<if condition="$show['avatarlink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editavatar">$vbphrase[edit_avatar]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editprofile">$vbphrase[edit_profile]</a></td></tr>
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td></tr>
<tr><td class="thead">$vbphrase[miscellaneous]</td></tr>
<if condition="$show['pmstats']"><tr><td class="vbmenu_option"><a href="private.php$session[sessionurl_q]">$vbphrase[private_messages]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="subscription.php$session[sessionurl_q]">$vbphrase[subscribed_threads]</a></td></tr>
<tr><td class="vbmenu_option"><a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[my_profile]</a></td></tr>
<if condition="$show['wollink']"><tr><td class="vbmenu_option"><a href="online.php$session[sessionurl_q]">$vbphrase[whos_online]</a></td></tr></if>
</table>
</div>
<!-- / user cp tools menu -->
- Replace with:
Code:
<!-- user cp tools menu -->
<div class="vbmenu_popup" id="usercptools_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">
$vbphrase[quick_links]
</td>
<td class="thead">
<a href="usercp.php?$session[sessionurl]">$vbphrase[user_control_panel]</a>
</td>
<td class="thead">
$vbphrase[miscellaneous]
</td>
</tr>
<tr>
<if condition="$vboptions['enablesearches']">
<td class="vbmenu_option">
<a href="search.php?$session[sessionurl]do=getnew">$vbphrase[new_posts_nav]</a>
</td>
<else />
<td class="vbmenu_option">
</td>
</if>
<if condition="$show['siglink']">
<td class="vbmenu_option">
<a href="profile.php?$session[sessionurl]do=editsignature">$vbphrase[edit_signature]</a>
</td>
<else />
<td class="vbmenu_option">
</td>
</if>
<if condition="$show['pmstats']">
<td class="vbmenu_option">
<a href="private.php?$session[sessionurl]">$vbphrase[private_messages]</a>
</td>
<else />
<td class="vbmenu_option">
</td>
</if>
</tr>
<tr>
<td class="vbmenu_option">
<a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a>
</td>
<if condition="$show['avatarlink']">
<td class="vbmenu_option">
<a href="profile.php?$session[sessionurl]do=editavatar">$vbphrase[edit_avatar]</a>
</td>
<else />
<td class="vbmenu_option">
</td>
</if>
<td class="vbmenu_option">
<a href="subscription.php?$session[sessionurl]">$vbphrase[subscribed_threads]</a>
</td>
</tr>
<tr>
<td class="vbmenu_option">
<a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300'); return false;">$vbphrase[open_buddy_list]</a>
</td>
<td class="vbmenu_option">
<a href="profile.php?$session[sessionurl]do=editprofile">$vbphrase[edit_profile]</a>
</td>
<td class="vbmenu_option">
<a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[my_profile]</a>
</td>
</tr>
<tr>
<td class="vbmenu_option">
</td>
<td class="vbmenu_option">
<a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a>
</td>
<if condition="$show['wollink']">
<td class="vbmenu_option">
<a href="online.php?$session[sessionurl]">$vbphrase[whos_online]</a>
</td>
<else />
<td class="vbmenu_option">
</td>
</if>
</tr>
</table>
</div>
<!-- / user cp tools menu -->
- Repeat for other styles.
Enjoy!
EDIT: Included installation instructions as a .txt file.
Download
This modification is archived and cannot be downloaded.
Screenshots
|