Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7588499
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T19:56:06+00:00 2026-05-30T19:56:06+00:00

I am implementing a Facebook application that shown as a tab in a fan

  • 0

I am implementing a Facebook application that shown as a tab in a fan page.

The application has a product details page that has like, send and comments plugins.

The problem is when clicking on the send and like buttons, the flyout dialog (the window that pops after clicking the button) is clipped by the left edge of the iframe (The application is in right to left language).

From graphical design perspective, the location of the buttons can’t be changed and scroll bars are not allowed. The application must be 520px wide, no more and no less.

Is there any option to control the position of the flyout to prevent its clipping? Is there any other way to prevent the clipping?

I searched similar questions here with no success.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T19:56:08+00:00Added an answer on May 30, 2026 at 7:56 pm

    Since these buttons include HTML structure in your page, they are stylable via CSS. So you can move the popup dialogs with CSS.

    Some Code

    If you take a closer look at the popups presented by facebook, you will see, that it has some styles attached to it:
    Facebook Styles

    The only thing you now have to do is moving this popup via CSS to the correct position.

    For example: if you want to hide the comment popup of the like button completely, you can just use this CSS:

    .fb_edge_comment_widget.fb_iframe_widget {
        display: none;
    }
    

    If you now want to move it, you cannot use .fb_edge_comment_widget.fb_iframe_widget since the element properties (set by JavaScript) will override your CSS. You have to use the span one element lower:

    .fb_edge_comment_widget.fb_iframe_widget > span{
        right: 300px;
    }
    

    This code will move the popup by 300px to the left:

    Moved by 300px

    This is not the most beautiful solution (note the small arrow at the top of the box now points to nothing), but it works.

    Complete test code:

    <!DOCTYPE html>
    <html>
        <head>
            <title>Test</title>
            <style type="text/css">
    
            .fb_edge_comment_widget.fb_iframe_widget > span{
                right: 300px;
            }
    
            #wrap {
                width: 650px;
                margin: 0 auto;
            }
    
            </style>
        </head>
        <body>
            <div id="wrap">
                <div id="fb-root"></div>
                <script>(function(d, s, id) {
                  var js, fjs = d.getElementsByTagName(s)[0];
                  if (d.getElementById(id)) return;
                  js = d.createElement(s); js.id = id;
                  js.src = "//connect.facebook.net/de_DE/all.js#xfbml=1&appId=336384849737745";
                  fjs.parentNode.insertBefore(js, fjs);
                }(document, 'script', 'facebook-jssdk'));</script>
    
                <div class="fb-like" data-href="http://www.google.de" data-send="true" data-width="500" data-show-faces="false"></div>
            </div>
        </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

in my rails web application I am implementing Facebook connectivity. I want that whenever
How would you go about implementing private mail functionality such like Bebo/Facebook and other
I am implementing facebook registration in my Yii site.. I setup application. For registration,
Facebook gurus, I have been implementing the Facebook Like button for a number of
It seems like implementing web-app like twitter/facebook-wall needs 1 huge feeds relational table (+
I'm with some problems implementing my first application with Login with Facebook. The user
I am implementing a protocol that has a method called fbDidExtendToken:. For some reason,
Before I started implementing Facebook authentication, my logout controller looked like this: # Kill
The facebook wave has finally hit me and I see that it's now time
I am going to be implementing the facebook application into my project, but I've

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.