Is it possible to position: absolute a <div /> over a Flash banner without adding wmode="transparent" to the banner?

I have a lightbox that needs to appear above my ads but I can't directly modify the banners as they come from a third party.

Edit: The problem mainly occurs in IE where the Flash banner is shown above the lightbox.

link|improve this question

feedback

5 Answers

up vote 2 down vote accepted

No it's not but you can just hide the banners when the lightbox is active.

link|improve this answer
This was my last-resort. Thanks for answering. For what it's worth, setting visibility: hidden on the Flash will stop your page jumping around like display: none would. – Sam May 8 '10 at 13:09
feedback

I am afraid no, if this was the case, we wold not have resorted to wmode="transparent", but i hope there is a way around it.

link|improve this answer
Yeah, that's what I was afraid of. – Sam May 8 '10 at 12:30
feedback

I haven't tested this, but you could try the iFrame hack you would apply for IE to show an absolute div over a select element. It consists of dynamically (or even hard-coded, why not) creating an iFrame container that you position above the Flash (in your case) with the lightbox content inside it.

Someone correct me if they tested and does not apply here, but even if it does, I wouldn't recommend it unless it's a life or death situation.

link|improve this answer
feedback

set the wmode="transparent" attrobute using javascript ??

Jquery

$(document).ready(function() {  
    $('.flash_container embed').attr('wmode', 'transparent');  
});
link|improve this answer
feedback

try

wmmodde="opaque"
i think this will allow html div to be displayed over flash. It works for me many times but it behaves differently in different browsers.

link|improve this answer
I can't directly access the Flash code - it comes from a third party. – Sam May 8 '10 at 12:35
thanks for -1, you can modify object or embed tag using DOM, isn't it? – Prashant Lakhlani May 8 '10 at 12:52
1  
You can't dynamically set wmode on object / embed tags. It's only read when the Flash is initialised. – Sam May 8 '10 at 13:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.