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.

I have added a Facebook like plugin, but when users click recommend or "send", the popup dialog box display is hidden under the product box.

Is there any CSS I can add/edit to add a z-index to the popup so it doesn't get hidden and appears above the rest of the content?

EDIT: link: http://www.wrapculture.com/shop/stickerbomb-1/

share|improve this question
1  
What is the code? – Praveen Kumar Mar 7 at 14:26

closed as not a real question by CBroe, Jarrod Roberson, Bill the Lizard Mar 23 at 21:40

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

I'm not sure where your problem may be but for a pop up box I like to use the follow:

#element{
    position:fixed;
    min-width:30%;
    max-width:40%;
    min-height:30%;
    max-height:40%;
    top:35%;
    left:30%;
    border:15px solid #333333;
    background:#FFFFFF;
    z-index:1000;//on the 1000th layer
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    -o-border-radius:10px;
    border-radius:10px;
}

It would be handy to see some code so I could give you more details as to where it's going wrong etc. As it's a facebook plugin I'm guessing it's using facebook's CSS. So you may want to think about applying your custom styles using an alternative method like using javascript.

But saying that you may have layered your products box on the same layer as the plugin. Change the layer of the product box to say (current-1).

share|improve this answer
sorry i forgot to include a link: wrapculture.com/shop/stickerbomb-1 – Stephen Jackson Mar 7 at 14:55

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