Ok, I'm still not getting it...
If you want to replace that text with the AddThis button, simple delete the link that you have and copy and paste this:
Code:
<!-- AddThis Button BEGIN -->
<script type="text/javascript">addthis_pub = 'bassa';</script>
<a href="http://www.addthis.com/bookmark.php" onmouseover="return addthis_open(this, '', '[url]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s9.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="" /></a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
<!-- AddThis Button END -->
It should work.
If you break down the AddThis script, the relevant parts are this:
Code:
<a href="http://www.addthis.com/bookmark.php" onmouseover="return addthis_open(this, '', '[url]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()">
<img src="http://s9.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="" />
</a>
Basically, it's just a linked image. If you want to change the image (or use text instead of an image), you can change the <img src=""> info.
Bookmarks