Results 1 to 3 of 3

Thread: Sub menus not visible on drop line menu

  1. #1
    Join Date
    Nov 2010
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Sub menus not visible on drop line menu

    Hi there,

    I used this menu: http://www.dynamicdrive.com/style/cs...rop_line_menu/

    The sub menus are not showing up and I can't figure out why. It looks like it is something obvious!

    CSS:
    .droplinebar{
    overflow: hidden;
    }

    .droplinebar ul{
    margin: 0;
    padding: 0;
    float: left;
    width: 100%;
    font: 14px Arial;
    background: #793700; /*default background of menu bar - url(bluedefault.gif) center center repeat-x*/
    }

    .droplinebar ul li{
    display: inline;
    }

    .droplinebar ul li a{
    float: left;
    color: white;
    padding: 9px 11px;
    text-decoration: none;
    }

    .droplinebar ul li a:visited{
    color: white;
    }

    .droplinebar ul li a:hover, .droplinebar ul li .current{ /*background of main menu bar links onMouseover*/
    color: #000000;
    /* background: transparent url(blueactive.gif) center center repeat-x; */
    }

    /* Sub level menus*/
    .droplinebar ul li ul{
    position: absolute;
    z-index: 200;
    left: 0;
    top: 0;
    background: #969595; /*sub menu background color */
    visibility: hidden;
    }

    /* Sub level menu links style */
    .droplinebar ul li ul li a{
    font: normal 13px Verdana;
    padding: 6px;
    padding-right: 8px;
    margin: 0;
    border-bottom: 1px solid navy;
    }

    .droplinebar ul li ul li a:hover{ /*sub menu links' background color onMouseover */
    background: #242c54;
    }
    I can also post the HTML code. Let me know. Thanks!
    Last edited by shmy; 11-29-2010 at 04:31 PM.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Both home-rotate.js and droplinemenu.js are 404 not found.

    There could also be other problems.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

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

    shmy (11-29-2010)

  4. #3
    Join Date
    Nov 2010
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Aha! I knew it was something simple. Duh, I didn't have the script linking from the js folder. Thank you!

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
  •