View Single Post
  #188  
Old 01-18-2013, 06:24 AM
Digital Jedi's Avatar
Digital Jedi Digital Jedi is offline
 
Join Date: Oct 2006
Location: PopCulturalReferenceLand
Posts: 5,171
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, first things first. Let's put the actual part people are going to click on to open the menu in the right place.
HTML Code:
<!--Start Custom Drop Down Menu Part 1-->

<td id="custommenu" class="vbmenu_control"><a href="">Custom Menu</a>
<script type="text/javascript">vbmenu_register("custommenu");</script>
</td>

<!--End Custom Drop Down Menu Part 1 -->
vBulletin looked a little different when this tutorial was made in 2006, so it's not going to work under the first instance of <if condition="$show['popups']">. However, you've put it under the third instance. It needs to go somewhere under the second, otherwise it's incomplete table code just floating on the page somewhere. Let's put it in after/under the Calendar for right now:

Code:
<if condition="$show['popups']">
		<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
		<if condition="$show['popups']">
<!--Start Custom Drop Down Menu Part 1-->

<td id="custommenu" class="vbmenu_control">
     <a href="#">Custom Menu</a>
<script type="text/javascript">vbmenu_register("custommenu");</script>
</td>

<!--End Custom Drop Down Menu Part 1 -->
(NOTE: That hashtag is important. Removing it will actually do the opposite of what you want it to do.)

You can put this pretty much anywhere you want, as long as you keep it inside the giant <table> that's containing all the menu items. Remember that it's a <td> cell, which means if you don't nest it properly, it won't look right. A proper table is made of the <table> itself, then table rows <tr> then row divisions <td>.

HTML Code:
<table>
    <tr>
       <td>calendar</td>
       <td>custom menu</td>
       <td>new posts</td>
    </tr>
</table>

Everything neatly nested one inside the other. No overlapping tags.
Now the menu itself can go right where you had it. No one is going to see it until it's clicked on. But the code's a little mussy. The menu is a little table itself, with multiple rows <tr>, but only one <td> per row. Again, it needs to be properly nested to show up right.

Code:
<!--Start Custom Drop Down Menu Part 2-->

<div class="vbmenu_popup" id="custommenu_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">

<tr><td class="thead">Custom Menu</td></tr>
<tr><td class="vbmenu_option" title="nohilite">This opening row and cell
don't close in the right place, so they're not needed.

<tr><td class="vbmenu_option" title="nohilite"><a href="http://www.caught-the-skunk.com/index.php?pageid=new-york-supporters">NY Caught-The-Skunk.com Supporters</a></td></tr>

<tr><td class="vbmenu_option" title="nohilite"><a href="http://www.caught-the-skunk.com/index.php?pageid=new-york-fishing-flea-markets">Fishing Flea Markets</a></td></tr>

<tr><td class="vbmenu_option" title="nohilite"><a href="http://www.caught-the-skunk.com/index.php?pageid=new-york-fishing-boating-outdoors-shows">Outdoor Sports' Shows</a></td></tr>

</td>
</tr> This closing row and cell tag are not in the right 
place, either, and not needed.
</table>
</div>

<!--Stop Custom Drop Down Menu Part 2-->
Then when you get to styling it, just use the classes, as they're shown in the example. class="thead" for headers, and class="vbmenu_option" for the clickable areas. (Though a header can also be a link, if needed.) Hopefully, that get's you started on the right track.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01124 seconds
  • Memory Usage 1,786KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code
  • (2)bbcode_html
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete