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 am having problems getting the Twitter Tweets and Facebook Likes to be on the same line. Currently, the Facebook Likes is a few pixels lower then the Twitter Tweets. How would I correct this?

I have tried adding a style to Twitter to bump the margin down a few pixels, but that also moved the Facebook down as well. I also tried adding negative margin to Facebook, but that did nothing.

I want to note that I haven't modified the Twitter/Facebook buttons with CSS in any way as all my attempts has failed.

.social {
    clear: both;
    padding: 10px 36px 20px 36px; 
}

<div class="social">
    <a class="twitter-share-button" data-url="http://www.google.com/" href="https://twitter.com/share" data-lang="en"></a>
    <div class="fb-like" data-href="http://www.google.com/" data-send="false" data-width="90" data-show-faces="false" data-layout="button_count"></div> 
</div>

/**** Twitter plugin ****/
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>

/**** Facebook plugin ****/
<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/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script>

What I have:

enter image description here

share|improve this question
Can you provide the relevant CSS? – Kevin Boucher Nov 14 '12 at 22:33
@KevinBoucher I just did. Sorry, I didn't modify the CSS to the Twitter/Facebook buttons, so I didn't think it was necessary. – icu222much Nov 14 '12 at 22:35
why not use socialitejs.com ? – balexandre Nov 14 '12 at 22:44
I'm trying to not use as many extra JS as possible. I figured that implementing these social media buttons should be quite straight forward and simple, so I won't need another plugin to assist me. – icu222much Nov 14 '12 at 22:48

1 Answer

up vote 2 down vote accepted

To fix this, I added float:left; to both the Twitter and Facebook lines of code.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.