Log in

View Full Version : Drop Down Menu Issue



Adnan959
07-29-2010, 12:25 PM
*resolved*

Adnan959
07-29-2010, 01:15 PM
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/dynamicindex14/fadeinslideshow.htm

Can it be edited somehow?

Thanks

Beverleyh
07-29-2010, 01:37 PM
<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.

Adnan959
07-29-2010, 02:18 PM
Thanks Beverleyh. It worked! :)

Appreciate the prompt response.

Thanks once again.

azoomer
07-29-2010, 02:29 PM
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

#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