SOLUTION TO DISPLAYING SOCIABLE ICONS HORIZONTALLY
Problem: How to show Sociable icons horizontally
keywords: display show sociable horizontal bookmarks icons
1) The IMG Image tag requires 'display inline;' added to it.
------
.sociable img {
display inline;
------
2) All other .display properties convert to 'inline'.
Note: this should be THE DEFAULT. The use of lists in the Sociable stylesheet makes no freaking sense at all. It's almost impossible to find a site with vertical entries. the purpose of lists is to create vertical entries. When combined with an image tag, this makes it highly probable that sites will display the bookmarks vertically.
You can edit the sociable php by searching for
<li> and </li>and
<ul> and </ul>
and simply deleting those characters, but unless you alter the IMG property of the stylesheet in many cases, depending upon your style hierarchy, you will still end up with vertically listed images.
Again, the code should be changed to display these icons horizontally by default, not as a list.