You are looking for the icon layout to be more horizontal? Let me see if I can implement something similar.
Might take a bit of time, so hang tight! I usually do releases at the end of the week.
Glad you like the plugin!
Actually, I’m just trying to get the icons to be set off to the left of the post (as well as the post excerpt) as they’ve done at TechCrunch.com Currently I can only get it to show up to the right of the featured image.
I’m trying to get it to be offset to the left (see this photo).
Thanks!
I see what you mean. You could actually accomplish this via the manual option and some custom css. Its not something I can easily implement because I cannot predict how each and every template is set up.
You can accomplish a similar effect by setting the position to “before” or “manual” and use this CSS:
.wpsocialite.small{ float: left} /* this can also float right */
.wpsocialite.small > li { margin: 0; display:block; float:none !important; width:20%; }
.wpsocialite.small .socialite { width: 80px !important; }
Be sure to note that if you are using the “large” layout you will have to change the class names to .large
If I set it to manual, where should I put the PHP code? I went ahead and added the custom CSS.
You can see the site I’m testing it on here: http://prodigeemarketing.com/blog
Thanks a ton!
The PHP code will go wherever you want the social buttons to display. In your index.php under “have_posts()” or in your single.php.
I’m closing this topic for now. Hope that worked for your site!