Results 1 to 5 of 5

Thread: Drop Down Menu Issue

  1. #1
    Join Date
    Jul 2010
    Posts
    17
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default Drop Down Menu Issue

    *resolved*
    Last edited by Adnan959; 07-29-2010 at 02:19 PM.

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

    Default

    After doing some minor testing, I've realized its the sideshow that is creating the problem and not the menu. Since when I add a normal image via CSS, it works perfectly.

    This is the script I'm using:
    http://www.dynamicdrive.com/dynamici...nslideshow.htm

    Can it be edited somehow?

    Thanks

  3. #3
    Join Date
    Jul 2008
    Location
    Derbyshire, UK
    Posts
    3,033
    Thanks
    25
    Thanked 599 Times in 575 Posts
    Blog Entries
    40

    Default

    <div id="navigation"> is your menu so you could try giving it a z-index value of something way out in front (hopefully over the slideshow) to see if that makes a difference.

    Try this in your CSS;
    div#navigation { z-index:1000; }

    Or change the div tag to <div id="navigation" style="z-index:1000;"> briefly while your identifying the problem.

  4. #4
    Join Date
    Jul 2010
    Posts
    17
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default

    Thanks Beverleyh. It worked!

    Appreciate the prompt response.

    Thanks once again.

  5. #5
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    The gallerylayer of the slideshow has a z-index around 1000 so you need to go a little higher that that (eg 2000 will work). Another thing you can try is this css
    Code:
    #fadeshow1 {
     z-index: -1;
    }
    That also seem to work when I test it in firebug.



    edit: sorry for interfering. I didn't see that you already had it working
    Last edited by azoomer; 07-29-2010 at 07:50 PM. Reason: crossposting

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
  •