I have Facebook like button on the bottom of the page. After clicking to Like, share widget is displaying below the footer. Any possibility to display it above ?
I found several similar topics, but any of them wasn't working to me.
eg: How to change facebook send popup positions?
I' using sharrre to initiate:
$('#share_site').sharrre({
share: {
googlePlus: true,
twitter: true,
facebook: true
},
buttons: {
facebook: { // http://developers.facebook.com/docs/reference/plugins/like/
action: 'like',
layout: 'button_count',
width: '',
send: 'false',
faces: 'false',
colorscheme: '',
font: '',
lang: fb_lang
},
googlePlus : { // http://www.google.com/webmasters/+1/button/
size: 'medium',
lang: gplus_lang ,
annotation: ''
}
},
enableHover: false,
enableCounter: false,
enableTracking: false
});
with CSS
#share_site {
width:300px;
float:right;
padding-top:3px;
}
.sharrre .button {
float:left;
width: 60px;
}
.facebook {
margin-left: 40px;
}
.twitter {
margin-left: 20px;
}
#share_buttons {
position:absolute;
top: 0px;
right: 10px;
}
#share_buttons .facebook {
width: 85px;
overflow: hidden;
margin-left: 15px;
}
#share_buttons .googleplus {
margin-right: 15px;
width: 15px !important;
}
Thank you.
