Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was using a plugin to create the like button, but that was randomly failing to show, so I added a like button myself. It shows, and works alright, but the pop-up window of fb to share the link after it is liked is cut to a short width.

You can check it here: http://www.mortez.net

I have tried many solutions. I also added the following like to the end of my main CSS, but does not work.

.fb-like span{overflow:visible !important; width:450px !important; margin-right:-375px;}

Please help! I tried and played around with it a million times, and no luck!

The specific code for the buttons are here:

/* CSS Document */

    #leftcontainerBox {
    float:left;
    z-index: 1000;
    }

#leftcontainerBox .buttons {
    float:left;
    clear:both;
    margin:4px 4px 4px 4px;
    width:60px;
    height:60px;
    padding-bottom:2px;
    padding-left:3px;

}

.bottomcontainerBox {
    float:left;
    height:30px;
width:100%;
    }

The button

     <div class="buttons">
<div class="fb-like" data-href="'.$post_link.'" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false"></div>        
</div>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.