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>