best way to overlap with flash menu?

quickie34

New Member
Hi
Does someone have a nice suggestion on how to make my flash-based drop down menu overlap the iframe that is directly under it?
Curently I alwasy have a gap below that is equal to the longest of the dropdown menu area
I would like to use the gap better and put the iframe behind the dropdown list so that the page doesnt show empty space all the time

http://www.bistroboheme.se/meny.htm
 

conor

New Member
You could make a similar menu with CSS, JavaScript or even jQuery... That would solve your problem but it means re-doing the whole thing!
 

quickie34

New Member
You could make a similar menu with CSS, JavaScript or even jQuery... That would solve your problem but it means re-doing the whole thing!

Yea, I have considered that, but ...
Isnt there something bout z-index, scrolling divs or anything else that can be more easily done ?
Since I already have a complex menu done in flash (that I like very much) I would prefer to do the adjustment or removal of the iframe
 

conor

New Member
I don't really know anything about flash to be honest. Can you apply CSS to a flash container? If so this CSS will make it appear in the foreground:

Code:
#flash{
  z-index:100;
}
 
Top