when I click in the like it button the pop up box is clipped respectively partly overlaid by other html elements. I changed all overflow:hidden to overflow:scroll and I also tried to set the z-index to a higher value but I could not make it work. I could not find another solution in the forum so I posted it again hoping somebody can help me. You can check on http://www.somersetsights.co.za/index-test.html.
Thanks, Peter
After browsing alomost two days I found a solution for my problem by myself. Here it is:
iframe.fb_iframe_widget_lift {
z-index: 20;
}
Just copy this in your CSS file and the Facebook Like comment popup window should be on top of all other html elements on your page. If not increase the z-index value. 20 worked fine for me.
Peter