You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Overlay Z-Index issues.. Created Aug 18, 2009

This thread is solved

Views: 2576     Replies: 2     Last reply Apr 18, 2011  
You must login first before you can use this feature

cactusphone

Posts: 2

Registered:
Aug 3, 2009

Overlay Z-Index issues..

Posted: Aug 18, 2009

In IE6, some form elements (only select elements) on my page appear on top of the revealed overlay window. Right now they don't have special z-index values, but I tried giving them a low, negative value and even giving the overlay css class a high value, but it still doesn't fix it.

Has anyone encountered this? Thanks.

differenthink

Posts: 22

Registered:
Mar 23, 2009

» Overlay Z-Index issues..

Posted: Oct 8, 2009

Reply to: Overlay Z-Index issues.., from cactusphone
I do have the exact same problem,
Is there any solution ?

aquazie

Posts: 1

Registered:
Apr 18, 2011

Here is my fix

Posted: Apr 18, 2011

Reply to: » Overlay Z-Index issues.., from differenthink
$("a[rel]").overlay({
	mask: '#ccc',
	//ie6 z-index bug fix	
	onBeforeLoad: function () { if ($.browser.msie && $.browser.version=="6.0") {$(".wrapper select").css({ visibility: "hidden" });} }, 
	onClose: function () { if ($.browser.msie && $.browser.version=="6.0") {$(".wrapper select").css({ visibility: "visible" });} }