There’s not an easy way to set floating follow buttons at the moment. Right now you can use Additional JavaScript to make it work, for example:
// Floating follow buttons
a2a_config.callbacks.push({
ready: function() {
jQuery('body').append(
'<div class="a2a_kit a2a_kit_size_32 a2a_floating_style a2a_vertical_style a2a_follow addtoany_list" style="left: 0px; top:150px;">' +
'<a class="a2a_button_facebook" href="https://www.facebook.com/facebook"></a>' +
'<a class="a2a_button_twitter" href="https://twitter.com/twitter"></a>' +
'<a class="a2a_button_instagram" href="https://www.instagram.com/instagram/"></a>' +
'<a class="a2a_button_pinterest" href="https://www.pinterest.com/pinterest/"></a>' +
'</div>'
);
a2a.init('page');
}
});
Thank you for the sample code.
Would it be possible to introduce a new configuration setting for this? Like, the original “Share buttons” section to add your post sharing buttons, plus the same in the floating tab, with a checkbox saying “use post share buttons” that disables the floating share buttons section. That way, you’d keep backwards compatibility whilst enabling users to use different services for the two widgets.
I’m sure there are other people interested in this.
No ETA yet, but it’s on the roadmap to provide service selection in the Floating tab. Thanks for your feedback!