Sharing Customization
Orientation of Menu
By default the drop-down menu displays above the button when there is not enough visible space below the button. You can force the drop-"down" menu to always appear downward.
var a2a_config = a2a_config || {};
a2a_config.orientation = "down";
In Drupal, add the following JavaScript code to your "Additional JavaScript" box in Configuration > Web services > AddToAny > Additional Options.
In WordPress, add the following JavaScript code to your "Additional JavaScript" box in Settings > AddToAny.
a2a_config.orientation = "down";
You can also force the menu to appear upward.
var a2a_config = a2a_config || {};
a2a_config.orientation = "up";
In Drupal, add the following JavaScript code to your "Additional JavaScript" box in Configuration > Web services > AddToAny > Additional Options.
In WordPress, add the following JavaScript code to your "Additional JavaScript" box in Settings > AddToAny.
a2a_config.orientation = "up";