View Single Post
Old 02-17-2011, 11:08 PM  
Serge Litehead
Confirmed User
 
Serge Litehead's Avatar
 
Industry Role:
Join Date: Dec 2002
Location: Behind the scenes
Posts: 5,190
in css i see this rule
#flash-holder embed{z-index:10; position:absolute;left:524px;top:0px;width:431px;h eight:362px;}

almost all divs in div container id=splash positioned absolutely, the rule i copied above tells browser to position embed tag absolutely rather than div it is in, not sure why it has been done this way, and what i see happening in IE8 the flash embed is positioned correctly on the right and then duplicated on the left because div id=flash-holder is positioned there by default and was intended to be sort of 'invisible' - it looks like a buggy behavior on IE part

i would try instead of
#flash-holder embed{z-index:10; position:absolute;left:524px;top:0px;width:431px;h eight:362px;}
use
#flash-holder {z-index:10; position:absolute;left:524px;top:0px;width:431px;h eight:362px;}
to see what happens,
make sure to check all possible browsers. cannot say it is the solution, may need more tweaking...
__________________

Last edited by Serge Litehead; 02-17-2011 at 11:19 PM..
Serge Litehead is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote