Posts: 37
Threads: 5
Joined: Jun 2010
I really like how the +1 and Like buttons are placed on the GS homepage. I assume this was added in the template's code, but where exactly should I add it to get a similar look on my site? What should I include to make them right-align?
Posts: 2,928
Threads: 195
Joined: Feb 2011
1) there is a plugin for this out:
http://get-simple.info/extend/plugin/soc...ons-3/201/
download that
2) install it
3) you will see that the buttons are present under the content
4) study the source code of the page:
Code:
<!-- Social Share Plugin by www.nokes.de - START --><div id="shareline">
<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
<g:plusone size="medium"></g:plusone>
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" data-counter="right"></script>
</div><!-- END - Social Share Plugin by www.nokes.de -->
you see there is a div with the id "shareline" and other classes etc.
so you really can define the layout like you want, defining the CSS elements
add this to your CSSfile of the active theme:
Code:
#shareline{text-align:right;}
and the buttons will sit at the right
Posts: 6
Threads: 0
Joined: Jul 2011
Is there a way to add "Digg", "Stumbleupon" & "Delicous"?
Posts: 2,928
Threads: 195
Joined: Feb 2011
towelk Wrote:Is there a way to add "Digg", "Stumbleupon" & "Delicous"?
you should ask the developer of the plugin ;=)
the support thread of this plugin is here:
http://get-simple.info/forum/post/16321/
Posts: 37
Threads: 5
Joined: Jun 2010
I didn't like the offerings of that plugin, so I just made a new <div> in the template and did it myself. You can check out the result, if you'd like. Thanks for the ideas though!
http://hopefrolf.info/
Posts: 1,928
Threads: 88
Joined: Apr 2010
2011-08-03, 03:36:56
(This post was last modified: 2011-08-03, 03:38:18 by jhondavis.)
I also add something to the Russian-speaking users
and add social networking plugin InnovationPlugin
http://chaga-mushroom.com/1/
Posts: 6
Threads: 0
Joined: Jul 2011
Connie Wrote:towelk Wrote:Is there a way to add "Digg", "Stumbleupon" & "Delicous"?
you should ask the developer of the plugin ;=)
the support thread of this plugin is here: http://get-simple.info/forum/post/16321/
Thanks for pointing me to that thread... I'd love to see these 3 social bookmarking as these are good ones among the others, aside from facebook and twitter.
Posts: 2
Threads: 0
Joined: Aug 2011
What about linkedin,Share and tweet button?is there also a way to put these buttons in GS home page...please suggest
Posts: 2,928
Threads: 195
Joined: Feb 2011
why not add these buttons in the template??? It is so simple
you do not need always a plugin
Posts: 2
Threads: 0
Joined: Aug 2011
You mean to say only by embedding code ,i can install it and there is no need of any plugin?
Posts: 2,928
Threads: 195
Joined: Feb 2011
umarimtiaz3 Wrote:You mean to say only by embedding code ,i can install it and there is no need of any plugin?
exactly. If you know the embed-code of the service which you want to include, why not include it in the template or create a component and add the code there?