Currently, I have utilized a Table for formatting the AddThis Div Buttons on my website. You can view this at:
The top of the page displays correctly as follows:
Below is the workaround code for achieving this:
<table align="center" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="60%" align="right"><img title="Help us. Help you." src="http://www.siding4u.com/media/shareaholic/img_help-us-help-you_right_yellow-text.png" alt="TEXT: Sharing is caring! Help us. Help you." width="360" height="23" /></td>
<td width="40%" align="left"><!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style">
<a class="addthis_button_preferred_1"></a>
<a class="addthis_button_preferred_2"></a>
<a class="addthis_button_preferred_3"></a>
<a class="addthis_button_preferred_4"></a>
<a class="addthis_button_compact"></a>
<a class="addthis_counter addthis_bubble_style"></a>
</div>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=siding4u"></script>
<!-- AddThis Button END --></td>
</tr>
</table>
I am looking to transition all my table layouts to CSS but facing challenges in getting the AddThis buttons to work properly. They always appear left-justified or break somehow regardless of what I attempt.
This seems like an easy fix, but my CSS skills are lacking in this area. Any assistance would be greatly appreciated.
Please help...