Go Back   vBulletin Modification Discussions > vBulletin Discusions > Knowledge Base > Tutorials
Home Register FAQ Members List Calendar Mark Forums Read
vBSEO Info Tags

About This Page: This is a discussion on [Tutorial] Making Custom Popup Menus Like Quick Links within the Tutorials forums, part of the Knowledge Base category, at vBulletin Modification Discussions. To make a popup menu like those used in vBulletin using the actual vBulletin code is quite simple. You only need to do two things beyond what you would normally do to make the menu itself. The actual menu has


Comment
 
LinkBack Tutorial Tools
<!-- google_ad_section_start -->[Tutorial] Making Custom Popup Menus Like Quick Links<!-- google_ad_section_end -->
[Tutorial] Making Custom Popup Menus Like Quick Links
Published by Code Monkey
06-26-2006
Tutorial Tools

Featured Tutorials

Want to submit your sitemap to all search engines in one shot?

Use the new sitemap standard to submit your sitemap to all search engines that recognize the standard.
[Tutorial] Making Custom Popup Menus Like Quick Links

To make a popup menu like those used in vBulletin using the actual vBulletin code is quite simple.

You only need to do two things beyond what you would normally do to make the menu itself. The actual menu has no additional formatting. So you can add existing or dynamic menus to a popup.

First you make the link that will be clicked to open the popup menu. This can be placed anywhere on a vBulletin page that contains the menu javascript. If the following is not on the page (It's most likely there if the navbar is) you can add it.

Code:
<script type="text/javascript" src="clientscript/vbulletin_menu.js"></script>
For the link code, you need a container. I use a table column below but you can use a div and most likely a span as well. Next you need to create a unique identifier for your menu. Below I use "my_made_up_menu_name", but it can be anything as long as it's unique to that page. You will use this as the id value for the container of the link.

Next you need to give the container the class value of "vbmenu_control". Unlike the id, this is a static choice and must be used as is.

Next you create the clickable link itself. You assign the href attribute with the value of "#unique_menu_id" which in the sample below would be "#my_made_up_menu_name". Don't forget to precede it with the # symbol.

Then give the link a display value to click. This can be whatever is appropriate for the menu. Such as "Quick Links" in the vBulletin navbar.

Finally, add the javascript code with the vbmenu_register function with the unique menu id. In the sample it is vbmenu_register("my_made_up_menu_name");. That covers the link. Simple eh?

HTML Code:
<!--The actual link code that will be clicked to open the pop up menu-->
<td id="my_made_up_menu_name"
    class="vbmenu_control"
    align="left">
    <a href="#my_made_up_menu_name">Link Name</a> <script type="text/javascript">
//<![CDATA[
vbmenu_register("my_made_up_menu_name");
//]]>
</script>
</td>
The menu wrapper itself is quite easy. Below I use a div which you can put anything in. Such as a table or a list, or even another div or a picture of your puppy. It's all up to you.

Here is the tricky part that can get overlooked. This containers id is the unique id of the link above but you add "_menu" to the end of it. So in the example below it is "my_made_up_menu_name_menu".

Next you make the class attribute have a value of "vbmenu_popup".

And last but not least, you assign the style property of "display:none".


And your done.

HTML Code:
<!--Hidden menu code placed on the page anywhere below the actual link to open it-->
<div id="my_made_up_menu_name_menu"
     class="vbmenu_popup"
     style="display:none">
    <!--Put your table or list code here-->
</div>
There is lot's of javascript out there to make these popup menu's. Some better and some worse than what is included in vBulletin. I myself have used overlib in many web applications. However, the proper thing to do when adding features to vBulletin or any other target software, is to add features without adding code, if possible. So if you can get the desired result using the code that is already there then that is the proper way to go about it bloat free.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 09-03-2006, 12:06 AM   #2 (permalink)
Senior Member
 
Loco's Avatar
 
Join Date: Aug 2006
Location: Kansas
Posts: 263
Loco is on a distinguished road
thank you, very informative..
now to read it about 15 more times so I really see whats going on
Loco is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-18-2006, 12:42 PM   #3 (permalink)
Junior Member
 
Join Date: Oct 2006
Posts: 11
Tribaljamin is on a distinguished road
Im up to 16 times - do I get a medal?
Tribaljamin is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-19-2006, 01:00 PM   #4 (permalink)
Junior Member
 
Join Date: Oct 2006
Posts: 11
Tribaljamin is on a distinguished road
Im having real problems with this guys and gals -
I have created another menu bar -
I have a nice new lovely drop down menu thing you can click on -
It opens up a drop down box -
Which contains some links Ive put in -
But the whole of the new bar Ive created is 'clickable' and . . .
The links arent in the same CSS style as the rest on the site or the other drop down menus like quick links.

(Im a virgin vBulletin modder btw)

Heres the link to the site: £4 82 - take out the £ and put 'pound' inbetween the 4 and the 82. - Sites hosted in the UK and isnt a com.
Is there anyone out there with the patience and knowledge to point me in the right direction?
Thanks in advance!

Tribes
Tribaljamin is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-19-2006, 08:21 PM   #5 (permalink)
Administrator
 
Code Monkey's Avatar
 
Join Date: May 2006
Posts: 2,194
Code Monkey is on a distinguished road
Well, it's hard for people to help you if you don't post any code so they can see what you have done.
__________________
Please do not PM me unless it's personal. General vBulletin or mod questions by PM will be ignored.

Try the vBSEO Demo

Click here for Instant Community
Code Monkey is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-20-2006, 04:03 AM   #6 (permalink)
Junior Member
 
Join Date: Oct 2006
Posts: 11
Tribaljamin is on a distinguished road
Code Monkey,
thanks for the reply.

Heres the code from navbar controls:
Ive used your code (many many thanks for that) - but can get the '#radio_dropdown' to look like the Quick links drop down.

Can you help?

Code:
<script type="text/javascript">
<!--
function log_out()
{
    ht = document.getElementsByTagName("html");
    ht[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)";
    if (confirm('$vbphrase[sure_you_want_to_log_out]'))
    {
        return true;
    }
    else
    {
        ht[0].style.filter = "";
        return false;
    }
}
//-->
</script>

<br />

<!-- nav buttons bar -->
        

<!-- / nav buttons bar -->

<!-- breadcrumb, login, pm info -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
    <td class="alt1" width="100%">
        <if condition="is_array($navbits)">
            <table cellpadding="0" cellspacing="0" border="0">
            <tr valign="bottom">
                <td><a href="#" onclick="history.back(1); return false;"><img src="$stylevar[imgdir_misc]/navbits_start.gif" alt="$vbphrase[go_back]" border="0" /></a></td>
                <td>&nbsp;</td>
                <td width="100%"><span class="navbar"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a></span> $navbits[breadcrumb]</td>
            </tr>
            <tr>
                <td class="navbar" style="font-size:10pt; padding-top:1px" colspan="3"><if condition="$_SERVER['REQUEST_METHOD'] == 'POST'"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink.gif" alt="" border="0" /><else /><a href="$scriptpath"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink.gif" alt="$vbphrase[reload_this_page]" border="0" /></a></if> <strong>$navbits[lastelement]</strong></td>
            </tr>
            </table>            
        <else />
            <div class="navbar" style="font-size:10pt"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_start.gif" alt="" border="0" /></a> <strong>$vboptions[bbtitle]</strong></div>
        </if>
    </td>    
    
    <if condition="$show['member']">
    
        <td class="alt2" valign="top" nowrap="nowrap">
        <div class="smallfont">
            <strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br />
            <phrase 1="$pmbox[lastvisitdate]" 2="$pmbox[lastvisittime]">$vbphrase[last_visited_x_at_y]</phrase>
            <if condition="$show['pmstats']"><br /><phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl_q]">$vbphrase[private_messages_nav]</phrase></if>
            <if condition="$show['pmwarning']"><br /><strong><phrase 1="$vbphrase[pmpercent_nav_compiled]">$vbphrase[your_pm_box_is_x_full]</phrase></strong></if>
        </div>
        </td>
        
    <else />
        
        <td class="alt2" nowrap="nowrap" style="padding:0px">
            
        <!-- login form -->
        <form action="login.php?do=login" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, $show[nopasswordempty])">
        <script type="text/javascript" src="clientscript/vbulletin_md5.js?v=$vboptions[simpleversion]"></script>
        <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
        <tr>
            <td class="smallfont"><label for="navbar_username">$vbphrase[username]</label></td>
            <td><input type="text" class="bginput" style="font-size: 11px" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="$vbphrase[username]" onfocus="if (this.value == '$vbphrase[username]') this.value = '';" /></td>
            <td class="smallfont" colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" />$vbphrase[remember_me]</label></td>
        </tr>
        <tr>
            <td class="smallfont"><label for="navbar_password">$vbphrase[password]</label></td>
            <td><input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" id="navbar_password" size="10" tabindex="102" /></td>
            <td><input type="submit" class="button" value="$vbphrase[log_in]" tabindex="104" title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" /></td>
        </tr>
        </table>
        <input type="hidden" name="s" value="$session[sessionhash]" />
        <input type="hidden" name="do" value="login" />        
        <input type="hidden" name="vb_login_md5password" />
        <input type="hidden" name="vb_login_md5password_utf" />
        </form>
        <!-- / login form -->
            
        </td>
        
    </if>    
    
</tr>
</table>
<!-- / breadcrumb, login, pm info -->

<!-- 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">
        <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>
        <td class="vbmenu_control">
<a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
        <td class="vbmenu_control"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td>
        
<!--The actual link code that will be clicked to open the pop up menu-->
<td id="radio_dropdown"
    class="vbmenu_control">
    <a href="#radio_dropdown">Radio</a> <script type="text/javascript">
//<![CDATA[
vbmenu_register("radio_dropdown");
//]]>
</script>
</td>

<!--Hidden menu code placed on the page anywhere below the actual link to open it-->
<div id="radio_dropdown_menu"
    class="vbmenu_popup"
    style="display:none">
<!--Put your table or list code here-->
<ul>
<li><a href="link">Trance</a></li>
<li><a href="link">Vocal trance</a></li>
<li><a href="link">House</a></li>
<li><a href="link">Hard dance</a></li>
<li><a href="link">Eurodance</a></li>
<li><a href="link">Prog</a></li>
<li><a href="link">Goa Psy</a></li>
<li><a href="link">Hardcore</a></li>
<li><a href="link">DJ mixes</a></li>
<li><a href="link">DnB</a></li>
<li><a href="link">Breaks</a></li>
<li><a href="link">Funky lounge</a></li>
<li><a href="link">Classic RnB</a></li>
</ul>

</div>

<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
        <if condition="$show['popups']">        
            <if condition="$show['searchbuttons']">
                <if condition="$show['member']">
                <td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>
                <else />
                <td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td>
                </if>
                <td id="navbar_search" class="vbmenu_control"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[search]</a> <if condition="$show['quicksearch']"><script type="text/javascript"> vbmenu_register("navbar_search"); </script></if></td>
            </if>
            <if condition="$show['member']">
                <td id="usercptools" class="vbmenu_control"><a href="$show[nojs_link]#usercptools">$vbphrase[quick_links]</a> <script type="text/javascript"> vbmenu_register("usercptools"); </script></td>        
            </if>
        <else />        
            <if condition="$show['searchbuttons']">
                <td class="vbmenu_control"><a href="search.php$session[sessionurl_q]" accesskey="4">$vbphrase[search]</a></td>
                <if condition="$show['member']">
                <td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>
                <else />
                <td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td>
                </if>
            </if>
            <td class="vbmenu_control"><a href="forumdisplay.php?$session[sessionurl]do=markread" rel="nofollow">$vbphrase[mark_forums_read]</a></td>
            <if condition="$show['member']">            
                <td class="vbmenu_control"><a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&amp;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>            
            </if>            
        </if>
        <if condition="$show['member']">
            <td class="vbmenu_control"><a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]" onclick="return log_out()">$vbphrase[log_out]</a></td>
        </if>
    </tr>
    </table>
</div>
<!-- / nav buttons bar -->

<br />
<if condition="$show['forumdesc']">
    <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
    <tr>
        <td class="alt1" width="100%"><strong>$foruminfo[title]</strong> <span class="smallfont">$foruminfo[description]</span></td>
    </tr>
    </table>
    <br />
</if>

<if condition="$show['popups']">
<!-- NAVBAR POPUP MENUS -->
    
    <if condition="$show['searchbuttons']">
    <!-- header quick search form -->
    <div class="vbmenu_popup" id="navbar_search_menu" style="display:none">
        <form action="search.php?do=process" method="post">
        <table cellpadding="4" cellspacing="1" border="0">
        <tr>
            <td class="thead">$vbphrase[search_forums]</td>
        </tr>
        <tr>
            <td class="vbmenu_option" title="nohilite">
                <input type="hidden" name="do" value="process" />
                <input type="hidden" name="quicksearch" value="1" />
                <input type="hidden" name="childforums" value="1" />
                <input type="hidden" name="exactname" value="1" />
                <input type="hidden" name="s" value="$session[sessionhash]" />
                <div><input type="text" class="bginput" name="query" size="25" tabindex="1001" /><input type="submit" class="button" value="$vbphrase[go]" tabindex="1004" /></div>
            </td>
        </tr>
        <tr>
            <td class="vbmenu_option" title="nohilite">
                <label for="rb_nb_sp0"><input type="radio" name="showposts" value="0" id="rb_nb_sp0" tabindex="1002" checked="checked" />$vbphrase[show_threads]</label>
                &nbsp;
                <label for="rb_nb_sp1"><input type="radio" name="showposts" value="1" id="rb_nb_sp1" tabindex="1003" />$vbphrase[show_posts]</label>
            </td>
        </tr>
        <tr>
            <td class="vbmenu_option"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[advanced_search]</a></td>
        </tr>
        </table>
        </form>
    </div>
    <!-- / header quick search form -->
    </if>

    <if condition="$show['member']">
    <!-- 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,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['pmmainlink']"><tr><td class="vbmenu_option"><a href="private.php$session[sessionurl_q]" rel="nofollow">$vbphrase[private_messages]</a></td></tr></if>
        <tr><td class="vbmenu_option"><a href="subscription.php$session[sessionurl_q]" rel="nofollow">$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 -->
    </if>
<!-- / NAVBAR POPUP MENUS -->

<!-- PAGENAV POPUP -->

    <div class="vbmenu_popup" id="pagenav_menu" style="display:none">
        <table cellpadding="4" cellspacing="1" border="0">
        <tr>
            <td class="thead" nowrap="nowrap">$vbphrase[go_to_page]</td>
        </tr>
        <tr>
            <td class="vbmenu_option" title="nohilite">
            <form action="$vboptions[forumhome].php" method="get" onsubmit="return this.gotopage()" id="pagenav_form">
                <input type="text" class="bginput" id="pagenav_itxt" style="font-size:11px" size="4" />
                <input type="button" class="button" id="pagenav_ibtn" value="$vbphrase[go]" />
            </form>
            </td>
        </tr>
        </table>
    </div>

<!-- / PAGENAV POPUP -->
</if>

Last edited by Code Monkey : 10-20-2006 at 07:37 AM. Reason: Added the code tags for proper viewing. Use them next time please.
Tribaljamin is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-20-2006, 07:38 AM   #7 (permalink)
Administrator
 
Code Monkey's Avatar
 
Join Date: May 2006
Posts: 2,194
Code Monkey is on a distinguished road
Please only post relevant code not the whole page.
__________________
Please do not PM me unless it's personal. General vBulletin or mod questions by PM will be ignored.

Try the vBSEO Demo

Click here for Instant Community
Code Monkey is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-20-2006, 07:42 AM   #8 (permalink)
Administrator
 
Code Monkey's Avatar
 
Join Date: May 2006
Posts: 2,194
Code Monkey is on a distinguished road
If you're are using it on a foreign page then you have to make sure you are including all the apropriate js,css files in the header.
__________________
Please do not PM me unless it's personal. General vBulletin or mod questions by PM will be ignored.

Try the vBSEO Demo

Click here for Instant Community
Code Monkey is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-20-2006, 08:37 AM   #9 (permalink)
Junior Member
 
Join Date: Oct 2006
Posts: 11
Tribaljamin is on a distinguished road
Code Monkey, thanks for your help so far, Ive followed your 'creating a drop down menu like quick links' tutorial as best as possible.

Heres the code: (apologies for the massive amount last post)
Code:
<!--The actual link code that will be clicked to open the pop up menu-->
<td id="radio_dropdown"
    class="vbmenu_control">
    <a href="#radio_dropdown">Radio</a> <script type="text/javascript">
//<![CDATA[
vbmenu_register("radio_dropdown");
//]]>
</script>
</td>

<!--Hidden menu code placed on the page anywhere below the actual link to open it-->
<div id="radio_dropdown_menu"
    class="vbmenu_popup"
    style="display:none">
<!--Put your table or list code here-->
<ul>
<li><a href="link">Trance</a></li>
<li><a href="link">Vocal trance</a></li>
<li><a href="link">House</a></li>
<li><a href="link">Hard dance</a></li>
<li><a href="link">Eurodance</a></li>
<li><a href="link">Prog</a></li>
<li><a href="link">Goa Psy</a></li>
<li><a href="link">Hardcore</a></li>
<li><a href="link">DJ mixes</a></li>
<li><a href="link">DnB</a></li>
<li><a href="link">Breaks</a></li>
<li><a href="link">Funky lounge</a></li>
<li><a href="link">Classic RnB</a></li>
</ul>

</div>

Basically, Im trying to recreate drop down menu like 'Quick links', but with my own links.

Am I heading in the right direction?

Cheers!
Tribaljamin is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-22-2006, 03:31 PM   #10 (permalink)
Junior Member
 
Join Date: Oct 2006
Posts: 11
Tribaljamin is on a distinguished road
Hi peeps,
Im still having problems with this issue.

Heres a link to my site: 4pound82

The 'Radio' button in the nav menu isnt using the same CSS as the 'Quick links'.
I would like it to.

How do I go about doing this?

Any help woul be great.

Cheers
Tribaljamin is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-22-2006, 05:38 PM   #11 (permalink)
Administrator
 
Code Monkey's Avatar
 
Join Date: May 2006
Posts: 2,194
Code Monkey is on a distinguished road
Code:
<li class="vbmenu_option">
__________________
Please do not PM me unless it's personal. General vBulletin or mod questions by PM will be ignored.

Try the vBSEO Demo

Click here for Instant Community
Code Monkey is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 11-05-2006, 10:54 PM   #12 (permalink)
Junior Member
 
Join Date: Nov 2006
Posts: 10
twitch is on a distinguished road
huge help, thanks!
twitch is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 11-06-2006, 12:15 AM   #13 (permalink)
Junior Member
 
Join Date: Oct 2006
Posts: 11
Tribaljamin is on a distinguished road
Cheers Code Monkey - Heres tehe result link. Its looking better, but not quite there - any pointers or tips?

Do you need to see any more code from anywhere?
Cheers

Tribes
Tribaljamin is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 01-12-2007, 10:02 PM   #14 (permalink)
Junior Member
 
Join Date: Jan 2007
Posts: 1
dprundle is on a distinguished road
I have a website at oksportsfan.com . It is a new website and I have recently applied a new style to it. I have followed your tutorial 100%, but the drop-down is still not working. Is there possibly something conflicting with this on my board? I have noticed a ?v=364 on some boards in the javascript include, what is this?
dprundle is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-08-2007, 01:46 PM   #15 (permalink)
Junior Member
 
Join Date: Feb 2007
Posts: 3
wenchupover is on a distinguished road
Hi,
I would like my links in new drop down to open in a new window. Have tried target="_new" and target="_blank" but neither work with the vBulletin menu javascript. Any suggestions would be greatly appreciated.
wenchupover is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Comment
Tags: , , , , , ,





Currently Active Users Viewing This Tutorial: 1 (0 members and 1 guests)
 
Tutorial Tools

Posting Rules
You may not post new tutorials
You may not post comments
You may not post attachments
You may not edit your posts

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


A vBSkinworks Design Recoded By vBModder.
All Code Distributed On This Site is © 2006 by it's author.
Search Engine Optimization by vBSEO 3.1.0

All times are GMT -7. The time now is 01:41 AM.
1 2 3 4 5 6 7 8 9 10 11 12