The problem is CSS and the use of iframes for Facebook and Twitter buttons, and possibly a theme conflict as well
iframes are swines to style (position) properly with css, so the suggestions here MAY NOT help. (Why Jetpack devs decided to use the iframe buttons is beyond me)
It’s impossible to suggest exact mods for your site without access, or a duplicate theme and settings on a test site, but you can start here;
You’ll need to do some mods to CSS, either the Jetpack file plugins/jetpack/modules/sharedaddy/sharing.css or in your theme custom.css file (If you mod the jetpack stylesheet – make a copy first)
Try this first
Open the jetpack sharing.css file and scroll down to find the class (line 117)
div.sharedaddy .sd-content {
width: 82.125%; /* 530px / 640px */
float: right;
margin: -2px 0 0 0;
Add !important to the margin style
margin: -2px 0 0 0!important;
Then mod the next style the same way
div.sharedaddy .sd-content ul {
margin: 0;
IF THAT DOESN’T WORK TRY THE NEXT, LONGER OPTION – You may need to use different margin-top values for the facebook/twitter buttons to the other buttons
e.g. li.share-facebook a.sd-button
Mod 1: (line 273)
li.share-facebook a.sd-button > span {
background-image: url('images/facebook.png');
ADD: margin-top:5px!important;
OR: padding-top:5px!important;
under the background-image line
Add the same code as suggested above
NOTE – 5px is just a suggestion – play around with the values
Try margin and padding – sometimes one will work, the other will not – Depends on theme/jetpack combination.
THEN – do the same for each class for every button you use.
This is for latest Jetpack version 2.4
If you decide to use the custom style file, you’ll need to add the classes as well – easiest is copy the entire class to the custom stylesheet with the added code…
It’s a lot of bother, and as I said, these simple mods may not work with the iframes – maybe switch to the square image type buttons instead. They will probably work OK without modding anything, and if needed, are easier to style as they don’t use iframes,