Check out my blog here:
http://www.brixwork.com/realtors/blog/seo/best-time-to-post-on-facebook-or-twitter-and-email/
When you try to press the "LIKE" button, a pop-up window appears at the correct height, but the width is limited by the width of the button.
Here is my CSS code:
.blog_social_media { float: right; border-left: 1px dotted #666; margin-bottom: 10px; margin-left: 10px; padding-top: 10px; overflow: visible; } .blog_social_media div { position:relative; display:block; float:left; } iframe.fb_ltr { width: 300px !important; } .blog_twitter_button { width: 55px; height: 62px; margin: 0px 0px 10px 10px; } .blog_facebook_button { width: 50px; height: 63px; overflow: visible !important; margin: 0px 0px 10px 10px; } .blog_googleplus_button { width: 50px; height: 64px; margin: 0px 0px 10px 10px; }
Here is the HTML code:
<div class="blog_social_media" style="width:65px; height:auto;"> <div class="blog_twitter_button"> <a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-via="brixwork" data-related="sonikastudios">Tweet</a> <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script> </div> <div class="blog_facebook_button"> <div class="fb-like" data-href="http://www.brixwork.com/realtors/blog/seo/three-reasons-to-claim-your-place-on-google-places/" data-send="false" data-layout="box_count" data-width="50" data-show-faces="false" data-font="lucida grande"> </div> </div> <div class="blog_googleplus_button"> <g:plusone size="tall"></g:plusone> <script type="text/javascript"> (function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js/plusone.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); })(); </script> </div> </div>
I have an overflow: visible; mounted on all of my elements that surround the facebook balloon. The same CSS logic works fine in the Google+ popup dialog, and only one of them suffocates. What happens, what can I fix?
Thanks in advance.
source share