Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Move / Position Facebook Like Button Comment Popup

Tags:

I need to move the popup comment box associated with a facebook like button. I understand this question has been asked and resolved a myriad of times.

Previously asked: Facebook Like Widget on Fan page, Comment area out of visible area

Screenshot of same issue as mine: http://twitpic.com/4q7ggi

The difference here is that I believe Facebook has changed the implementation within the past several months so that both the Like Button and the comment popup are contained within a single iframe. I would expect they likely did this because it would be the only reliable way to guard against malicious websites taking advantage of users by auto-liking content. However, it means that I can't apply CSS to reposition the comment box.

I am using the HTML5 like button implementation, which is the same used on the official facebook reference for like buttons http://developers.facebook.com/docs/reference/plugins/like/. To see an example, click the like button on the facebook reference page again and then inspect the comment popup element. You'll see that both the like button and comment popup are contained within the same iframe.

like image 614
tbradley22 Avatar asked Nov 06 '12 17:11

tbradley22


2 Answers

This has worked for me in the past.

.fb-like.fb_edge_widget_with_comment.fb_iframe_widget span iframe {
    /* Now you can apply css here */
    bottom:0!important;
}
like image 161
Jason Lydon Avatar answered Oct 13 '22 16:10

Jason Lydon


You can't change the CSS of the comment box inside the iframe because it's an violation of the same origin policy:

The policy permits scripts running on pages originating from the same site to access each other's methods and properties with no specific restrictions, but prevents access to most methods and properties across pages on different sites.

The send message to box can be changed with CSS because it doesn't reside in the iframe.

like image 38
TimPietrusky Avatar answered Oct 13 '22 16:10

TimPietrusky