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 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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.