First my code
Here is my problem. Simple code with a logo on the left and a flash drop down menu next to it. Its a header file for a website. The drop down menu naturally has to be transperant so that it drops over the images and other content on the pages. But the position of the flash file has to RELATIVE to the logo, so when i minimize or make the window smaller the menu should stay next to the logo, right now it stays where its at even if the window size changes. But when i change the position to RELATIVE in the same code , my flash menu is no longer transperant? Does anyone know whats going on? How do I make it relative to the logo next to it?
Code:
<table width="791" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<!--DWLayoutTable-->
<tr>
<td valign="top"><img src="images/Logo.gif" width="237"> </td>
<td valign="top"><div id="Layer1" style="position:absolute; width:554px; height:200px; z-index:1; left: 497px; top: 10px;">
<object codebase="[URL unfurl="true"]http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"[/URL] width="554" height="200" align="left">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="[URL unfurl="true"]http://127.0.0.1/test.swf">[/URL]
<param name="wmode" value="transperant">
<param name="quality" value="high">
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<embed src="test.swf" wmode="transparent" quality="high" width="554" height="200" name="menu" align="left" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="[URL unfurl="true"]http://www.macromedia.com/go/getflashplayer"></embed>[/URL]
</object></div>
</td>
</tr>
</table>
Here is my problem. Simple code with a logo on the left and a flash drop down menu next to it. Its a header file for a website. The drop down menu naturally has to be transperant so that it drops over the images and other content on the pages. But the position of the flash file has to RELATIVE to the logo, so when i minimize or make the window smaller the menu should stay next to the logo, right now it stays where its at even if the window size changes. But when i change the position to RELATIVE in the same code , my flash menu is no longer transperant? Does anyone know whats going on? How do I make it relative to the logo next to it?