I'm using the Sociable plugin and find that with some themes the site icons are displayed with extra stuff. After researching this, I discovered that the theme in question (Elements of SEO) defines an ID in its style sheet for content to display a background image for each list item. Sociable tries to do the right thing by defining a class to display no marker and no background, but since it is within the content ID, the background image gets displayed anyway.
I tried duplicating the sociable classes for ul and ul li, like this:
#sociable ul {
display: inline;
margin: 0 !important;
padding: 0 !important;
}
#sociable ul li {
background: none;
display: inline;
list-style-type: none;
margin: 0;
padding: 1px;
}
Then I modified the sociable.php file to include an id=\"sociable\" for the div tag.
Does anyone know how to solve this?