I'm having a problem between the 2 browsers (the browser wars are back ). The site is www.pacificbulletproof.com In Internet Explorer, it looks the way its suppose to. In FireFox, the width of the flash image at the top of the page is small. Can anyone give me some guidance to that issue? I tried all day and couldn't figure it out. - Adam
i think i got your problem. this is taken from your code. <div class="flash"> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" height="123" width="775"> <param name="movie" value="images/flash/adam.swf"> <param name="quality" value="high"> <embed src="images/flash/adam.swf" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" height="117" width="760"> </object> </div> Code (markup): IE uses this part of the code: <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" height="123" width="775"> Code (markup): and firefox uses this: <embed src="images/flash/adam.swf" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" height="117" width="760"> Code (markup): as you can see, they use different values for height and width. you may need to change this.