0

html to show like button:

<div class="fb-like" data-href="https://www.facebook.com/TheGloopal/?fref=ts" data-layout="button" data-action="like" data-show-faces="false" data-share="false" style='float:right;'></div>

enter image description here

BUt the popup when clicked on the fb like, appear on the right. But I want it to appear to the left as the button placed on the right.

enter image description here

I referred to this:Facebook send button flyout

and tried the following but doesn't work,

.fb_edge_widget_with_comment span.fb_edge_comment_widget {
   left: -45px !important;
}
Community
  • 1
  • 1
112233
  • 2,406
  • 3
  • 38
  • 88

3 Answers3

0

its in the html button code:

<div class="fb-like" data-href="https://www.facebook.com/TheGloopal/?fref=ts" data-layout="button" data-action="like" data-show-faces="false" data-share="false" style='float:right;'></div>

you need to change where it says style='float:right;' to style='float:left;'

Dylan L.
  • 1,243
  • 2
  • 16
  • 35
  • I added this ( style='float:right;' ) actually to place the button on the right. I already tried ( style='float:left;' ). This only positions the like button on the left but popup still appears off the site. – 112233 Dec 23 '15 at 07:37
  • try appending "position: absolute;" to the style – Dylan L. Dec 23 '15 at 07:42
  • that doesn't make it appear to the left – 112233 Dec 23 '15 at 08:00
  • Or is there a way to make it a popup that appears in the center to solve the issue? – 112233 Dec 23 '15 at 08:02
0

try this:

<div class="fb-like" data-href="https://www.facebook.com/TheGloopal/?fref=ts" data-layout="button" data-action="like" data-show-faces="false" data-share="false" style='float:left;'></div>
Amitesh Kumar
  • 3,051
  • 1
  • 26
  • 42
0

This solves the matter. I added below in the css

.fb_iframe_widget iframe {
    position:absolute;
    right:0px;
    background:#fff; /* in your case you may want to add a white background */
    transition: all .5s; /* completely optional, but adding a transition makes for a nice effect */
}
112233
  • 2,406
  • 3
  • 38
  • 88