I have an issue with the CSS in my template and sociable. I can fix it by changing:
.sociable ul li {
background: none;
display: inline !important;
list-style-type: none;
margin: 0;
padding: 1px;
to
.sociable ul li {
background: none;
display: inline !important;
list-style-type: none;
margin: 0 !important;
padding: 1px;
(adding !important to the margin).
Possibly worth adding this to the main code?