Log in

View Full Version : "Quick Links" Menu in three columns


Snort_2005
08-28-2005, 10:00 PM
This is my first time ever releasing something like this so don't byte. :p

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 <!-- 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&amp;focus=1','buddylist','statusbar=no,me nubar=no,toolbar=no,scrollbars=yes,resizable=yes,w idth=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: <!-- 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">

&nbsp;

</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">

&nbsp;

</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">

&nbsp;

</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">

&nbsp;

</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&amp;focus=1','buddylist','statusbar=no,me nubar=no,toolbar=no,scrollbars=yes,resizable=yes,w idth=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">

&nbsp;

</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">

&nbsp;

</td>

</if>

</tr>

</table>

</div>

<!-- / user cp tools menu -->
Repeat for other styles. :)
Enjoy!


EDIT: Included installation instructions as a .txt file.

Snort_2005
08-29-2005, 04:09 PM
Oh.. forgot to add. This will also work well on vB 3.0.X series as well.

Live Demo: http://www.zcworld.net/

KuRi
08-29-2005, 05:10 PM
very good, allthough I wont be using this as i have moved the user control panel links to a usercp drop menu... Still a good idea, keep em coming

Bacon Butty
08-29-2005, 07:32 PM
Nice little modification. Just added it to my site (http://footie-fans.co.uk), thanks!

Nordinho
08-29-2005, 07:35 PM
Nice little modification. Just added it to my site (http://footie-fans.co.uk), thanks!

nice one...btw your VBadvanced newstemplate is messed up...

Snort_2005
08-29-2005, 09:41 PM
the custom quote box got cut off. X_X OMG.. Must fix. o.o

EDIT: Thanks.. I bumped thread disply cutoff to unlimited characters to show the full post.

Scooterpig
08-29-2005, 10:38 PM
the custom quote box got cut off. X_X OMG.. Must fix. o.o

EDIT: Thanks.. I bumped thread disply cutoff to unlimited characters to show the full post.

Very neat, cool..thank you..:)...ya might just wanna add it to a .txt file & attach in 1st post for download so people can save it..:)

Snort_2005
08-30-2005, 12:12 AM
Very neat, cool..thank you..:)...ya might just wanna add it to a .txt file & attach in 1st post for download so people can save it..:)

Good idea.. and Done. :)

Floris
08-30-2005, 10:58 PM
Oh.. forgot to add. This will also work well on vB 3.0.X series as well.

Live Demo: http://www.zcworld.net/

Do you have a test account?

Snort_2005
08-31-2005, 10:13 AM
Do you have a test account?

... >_<

Username: Testor Dudzor
Password: test

Bacon Butty
08-31-2005, 08:32 PM
nice one...btw your VBadvanced newstemplate is messed up...

Was that aimed at me? :ermm:

Snort_2005
09-01-2005, 01:42 AM
Was that aimed at me? :ermm:

No.. It was aimed at me. His screenshot had my default skin in it. It was also because of the rounded png quotes I had on there. <_<