drop down menu items are behind the flashes

drop down menu items are behind the flashes

by eda karacelebi -
Number of replies: 3

I have 1.9.9 moodle version and aardvark_beta theme. I just insert a swf object on my home page. It works properly but I have problem in my dropdown menu items. My dropdown menu items are behind the swf so I can't click on them. How can I bring the dropdown menu items to front?

Before inserting the swf, there was a picture and there wasn't any problem..

www.terakki.net/tmoodle

Average of ratings: -
In reply to eda karacelebi

Re: drop down menu items are behind the flashes

by Mary Evans -
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers Picture of Testers

You need to add ...

<param value="opaque" name="wmode" /> inside the <object> tag.

For example...

<object width="195" height="125" data="http://urlpath/example.swf" type="application/x-shockwave-flash">
<param value="http://urlpath/example.swf" name="movie">
<param value="#000000" name="bgcolor" />
<param value="opaque" name="wmode" />
</object>

Mary

In reply to Mary Evans

Ynt: Re: drop down menu items are behind the flashes

by eda karacelebi -

thank you so muchsmile it worked!

In reply to eda karacelebi

Re: Ynt: Re: drop down menu items are behind the flashes

by Mary Evans -
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers Picture of Testers

By the way...the problem is caused by the way Internet Explorer browser interprets 'flash' objects.

It works ok in Firefox smile

But glad you got it working ok now!

Cheers

Mary