Tekin, First you should get rid of all the errors in your HTML:
http://validator.w3.org/check?verbose=1&uri=http%3A//www.ranshop.co.uk/product_list.php%3Fcat_id%3D31%26man_id%3D29 The doctype has to be in the very first line of the document. If you want to put IE in quirksmode, there may be a XML Declaration above it. > just a quick question really, am I going to struggle to get this version > of Opera to display the roll over windows properly, or is there an > obvious/quick solution? otherwise, I'll just turn them off for this > version as I can live with that for certain browsers. You should experiment with z-index and float properties?! > Have yet to fully test out on a Mac/Linux, but I think it's fine on > Safari, Firefox, and only minor problems with ie mac. I know the flash > clock causes most of the problems on a lot of the browsers, so I'm going > to turn it off for everything but IE (unless anyone can suggest a > workaround...) Just use object to embed the flash and some conditional comments to make it work in all browsers: <!--[if IE]> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="movie" value="/flash/homepage.swf" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <img src="/img/flash/homepage.jpg" alt="" /> </object> <![endif]--><!--[if !IE]><x--> <object data="/flash/homepage.swf" type="application/x-shockwave-flash"> <param name="movie" value="/flash/homepage.swf" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <img src="/img/flash/homepage.jpg" alt="" /> </object> <!--><![endif]--> This will reduce the display errors. regards, Martin ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
