Log in

View Full Version : drop down menu opens behind the image



paldo
12-05-2008, 01:37 PM
On my homepage (http://www.st-triphon.ch/photosst_triphon/diashow.html) I have a slide show that I've downloaded from your site and which is running perfectly. On top of the slide show I have a drop down menu. Unfortunately it opens behind the images, which makes it impossible to select the links. How to solve this problem?

Thank you

Paldo

Schmoopy
12-05-2008, 01:43 PM
Add a z-index to the menu, to bring it in front of the image.

Like so:



#menu{
z-index:100;
}


And make sure the slideshow z-index is less than the menu's, so you could set the slideshow z-index to 50 for example.

Change the #menu to the class or id that you're using for your menu,

Good luck,

Jack.

xahx
12-05-2008, 11:18 PM
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="533" height="59">

<param name="WMode" value="Transparent">

<param name="movie" value="banner_banamex.swf">

<param name="quality" value="high">

<embed src="banner.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="533" height="59" wmode="transparent"></embed>

</object>

add the tags in red to your Flash embed... then it will work!

xahx
12-05-2008, 11:34 PM
oops i thought ur slideshow was flash.... if it was flash then that is the solution, try schmopy's suggestion

paldo
01-02-2009, 04:41 PM
Jack

thank you very much, you suggestion (z-index) was the right one.