Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If you click the orange ORDER button at the top the #dimmer should cover the whole background and the form should appear at the top. (lightbox-like effect)

The problem is that in IE7 the #dimmer would appear at the top regardless of it's z-index.

In other browsers everything works nicely.

Link: http://fenelon.ru/projects/SpaceFood/2.1-jQuery/

Thank you, fellows!

share|improve this question
Try adding position:relative to element under question. – Sarfraz Oct 20 '10 at 8:57
If you click... click what exactly? What are you asking us? We can't assume that we know what you're asking..... – Buhake Sindi Oct 20 '10 at 8:59
Cross-browser is always a pain... Why don't you set the display to none instead of hiding using z-index? – GôTô Oct 20 '10 at 8:59
@The Elite Gentleman: the orange button at the top > how many orange buttons do you see? – GôTô Oct 20 '10 at 9:07
Are we talking stack overflow Orange button? I don't see any orange "ORDER" button here. – Buhake Sindi Oct 20 '10 at 9:16
show 3 more comments

1 Answer

up vote 1 down vote accepted

Try this:

$("#orderBtn").click(function(){
    if(!visible) {

        if ($.browser.msie && $.browser.version.substr(0,1)<8) {
            $(".product").css('z-index','-2');
            $("#order").css('z-index','1');
            $("#dimmer").css('z-index','-1');
        }

        ... // do your other stuff

 } else {

        if ($.browser.msie && $.browser.version.substr(0,1)<8) {
            $(".product,#order,#dimmer").css('z-index','auto');
        }    

        ... // do your other stuff

 }
});

Lazy IE7 needs a z-index to all involved elements. This should work now, let me know.

share|improve this answer
Unfortunately, that didn't help. I want to apologize if my question is somehow unclear, but I've really lost my temper. – Fenelon Oct 20 '10 at 10:23
Here's what you've suggested: fenelon.ru/projects/SpaceFood/2.1-jQuery/index1.html – Fenelon Oct 20 '10 at 13:42
down link? i will try again later… – Thomasz Oct 20 '10 at 16:40
I updated the solution, give it a try! – Thomasz Oct 20 '10 at 19:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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