vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   How do I add a new drop down to the menu (https://vborg.vbsupport.ru/showthread.php?t=71143)

blueuniverse 10-29-2004 06:46 PM

How do I add a new drop down to the menu
 
At the top, my menu is getting quite crowded, and I want to tidy it up by putting some of the links into drop downs, like there is currently with the search and quick links.

Whenever I try to replicate the code for those though, I get errors or it doesn't work in some way.

Is there an easy way to do this, some code I could use?

Gadabout 10-29-2004 07:51 PM

I use the drop downs all over my site... including as my forumjump.

First create the drop down table and populate it. I've attached the code you'll want to change yourid to whatever you want to call this drop down.

PHP Code:

<div class="vbmenu_popup" id="yourid_menu" style="display:none">
<
table cellpadding="4" cellspacing="1" border="0">
        <
tr>
            <
td class="thead">Title Here</td>
        </
tr>
        <
tr>
            <
td class="vbmenu_option"><span class="smallfont">Content Here</span></td>
        </
tr>
    </
table>    
</
div

In your table where the drop down is going to live, create a cell like the one below, remember to change yourid to whatever you called the dropdown table above.

PHP Code:

<td class="vbmenu_control" id="yourid"><a href="#goto_yourid">Your Title</a></span> <script type="text/javascript"vbmenu_register("yourid"); </script></td

You'll have to use a span tag to set the font attributes as you cannot change the class tag from vbment_control.

Paste the table with the div tags below the </script> tag in your header and your in action.

blueuniverse 10-30-2004 06:20 AM

Wouldn't it have to go after?

Code:

<if condition="$show['popups']">
Are there any specifics to where the div code should go or can it go anywhere in the navbar file?

Michael Morris 10-30-2004 07:15 AM

It doesn't have to.


All times are GMT. The time now is 06:12 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01636 seconds
  • Memory Usage 1,723KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete