Hiding something from Safari

Associate
Joined
16 May 2005
Posts
680
I'm doing a site and to keep it HTML 4.01 transitional I'm using the following code for flash files:

Code:
<object type="application/x-shockwave-flash" data="_flash/flash.swf" width="420" height="225">
<param name="movie" value="/_flash/flash.swf">
<img src="/_images/flash_alt_image.jpg" width="420" height="225" alt="">
</object>

Now this works fine, but on some of the pages, there's a drop down menu which overlaps the flash and goes underneath unless I include the additional parameters of

Code:
<param name="quality" value="high">
<param name="wmode" value="opaque">
<param name="menu" value="false">

Which is fine of most browser but with Safari it won't display anything with these additional settings.

Is there any way I can get it to if=Safari and not output it? The girl whos machine we ran it on said menus disappear behind stuff on Safari all the time even on Microsofts site so it would be ok... ish.

Cheers
 
Last edited:
Back
Top Bottom