vote up 2 vote down star

I've tried setting the zIndex for my OBJECT and it seems that I cannot place any content above it. Is this an IE issue? Any workarounds? I'm trying to display a lightbox type dialog directly above the OBJECT.

flag

60% accept rate
what's in your object tag? it's a known issue with IE, but there are some work arounds. – quoo Jul 20 at 20:05
1  
It's a hosted user control, not flash so the wmode parameter won't do it. – Alex Jul 20 at 20:17

3 Answers

vote up 2 vote down check

Since you've specified that it wasn't flash, the other way to fix this problem is by using a technique known as an IFrame Shim.

More information on the IFrame Shim technique

The technique basically involves putting an IFrame between your object your content.

link|flag
vote up 1 vote down

If all else fails, and your object has a fairly consistent appearance, you can swap in an image of it when the lightbox opens.

Or, if the object doesn't need to be visible underneath the lightbox, you can just remove the object and then re-append it when the lightbox closes.

link|flag
vote up 0 vote down

Try adding this parameter to the object:

<param name="wmode" value="transparent" />
link|flag
1  
That only makes sense if the object he's talking about is Flash (which it may very well be; he didn't specify). – mercator Jul 20 at 20:08

Your Answer

Get an OpenID
or

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