Results 1 to 3 of 3

Thread: Drop Down Tabs: Drop down menus do not display

  1. #1
    Join Date
    Apr 2009
    Location
    Austin, Texas
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Drop Down Tabs: Drop down menus do not display

    1) Script Title: Drop Down Tabs (5 Styles)

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...roptabmenu.htm

    3) Describe problem: In a nutshell, the drop down menus are not appearing. They are either (1) not displaying at all; or (2) are disappearing behind the images; I don't really know which is the case.

    I believe I have followed all the instructions provided on DD. I have tried moving the drop down DIVs to just above the </body> tag. No luck.

    My test site is http://webtrain.austincc.edu/~dseago..._worktest.html

    Just in case:
    http://webtrain.austincc.edu/~dseago...eet_simple.css

    http://webtrain.austincc.edu/~dseago...lfmoontabs.css

    http://webtrain.austincc.edu/~dseago...ropdowntabs.js

    By the way, I'm a student who is new at all this, so any help with figuring out what I have done wrong will be most appreciated!

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Ah took me a while to finally track down the problem. Your initialization code at the very bottom of the page is incorrect:

    Code:
    <script type="text/javascript" src="client_files/dropdowntabs.js">
    //SYNTAX: tabdropdown.init("menu_id", [integer OR "auto"])
    tabdropdown.init("moonmenu", auto)
    </script>
    It should just be:

    Code:
    <script type="text/javascript">
    //SYNTAX: tabdropdown.init("menu_id", [integer OR "auto"])
    tabdropdown.init("moonmenu", 0)
    </script>
    DD Admin

  3. The Following User Says Thank You to ddadmin For This Useful Post:

    Surly1 (04-06-2009)

  4. #3
    Join Date
    Apr 2009
    Location
    Austin, Texas
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    That worked! I cannot thank you enough! And thanks for the great scripts -- they've been a huge help with my project.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •