Results 1 to 3 of 3

Thread: Drop down menu hidden by slideshow script

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

    Default Drop down menu hidden by slideshow script

    1) Script Title: Conveyor Belt slideshow script

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

    3) Describe problem:

    Hello

    I'm trying to get my drop down menu to drop over the slideshow not behind.

    I resolved this problem with a Flash slideshow by using this:<param name="wmode" value="transparent" />

    How can i do something similar within a Javasript.

    Here is the link:

    http://www.lionphotography.com/leftrightslide.html



    Thank you
    Last edited by ddadmin; 12-14-2010 at 08:39 PM.

  2. #2
    Join Date
    Sep 2008
    Location
    Bristol - UK
    Posts
    842
    Thanks
    32
    Thanked 132 Times in 131 Posts

    Default

    In your CSS, change the code to:

    Code:
    #navbar ul li ul {
    	position: absolute;
    	width: 8em;
    	display: none;
    	height: auto;
    	background-color: #FFF;
            z-index:50;
    }
    Works for me, when editing with firebug on your site.

    Shouldn't need any JavaScript to accomplish this.

  3. #3
    Join Date
    Dec 2010
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    It works, why didn't I think of this

    Thank you very much

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
  •