Correct alignment of Google Plus One and Facebook buttons

I am trying to add the Google Plus One and the Facebook Like button next to each other. For some reason, a Facebook button like a button has a gap at the top that moves it a few pixels and makes it fun.

Example: http://jsfiddle.net/Chevex/yF4yz/

Is there a better way to align these two buttons?

+3
source share
2 answers

The problem is that css styles are loaded with images. You can either install css on your page (recommended) or in javascript, make a document at startup and change the values โ€‹โ€‹after filling in the images.

css facebook 3 , - 25 , google.

div.fb-like
{
    top:-3px;
    left:-25px;
}
+7
0

All Articles