When I attach social buttons to my blog, Facebook button moves bottom almost 5 pixels from other social buttons like Twitter, Google+.
This is because facebook button has vertical-align: bottom;
style inside of widget;
We can solve this problem adding bellow style to css.
.fb_iframe_widget span {
vertical-align: baseline !important;
}