Question

I have tried implementing a facebook like button on my website however when the like button is clicked the facebook content displays underneath my website content, specifically any images. Is there a way to correct this?

festrags.com Password="cheaye"

Was it helpful?

Solution

Your issue is a unnecessary z-index: 8888;

.product .image {
  position: relative;
  overflow: hidden;
  z-index: 8888;
  margin: 0 0 5px;
}

Lower it or add this to your CSS (below the above CSS):

.fb_iframe_widget_lift {
   z-index: 8889 !important;
}

(downvotes might be caused by you not posting any code)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top