Hi. I would like to know if it's possible to have the popup with the AddThis icons load above the button. I have a section on my site that is an iframe, and the popup is not entirely visible.
Maybe this screenshot will explain what I mean with "not entirely visible" and wanting to move it above the button: http://vulcanmedia.co.za/integr8/ScreenShot378.png
Here is the site: http://vulcanmedia.co.za/integr8/
The iframe that loads upon successfull signup is here: http://vulcanmedia.co.za/integr8/thank-you.html
Any help would be appreciated.
Thank you.
Bardin
Add this code to your iframe HTML, just before the </body> tag:
<script type="text/javascript">
if (typeof addthis_config !== "undefined") {
addthis_config.ui_offset_top = -210
} else {
var addthis_config = {
ui_offset_top: -210
};
}
</script>
This question is closed to new answers.