<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>| Blogger Tips And Tricks|Latest Tips For Bloggers</title>
	<atom:link href="https://www.bloggertipandtrick.net/tutorials/bookmarks/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Blogger Tips And Tricks&#124;Latest Tips For Bloggers</description>
	<lastBuildDate>Wed, 08 Jun 2022 17:31:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to Add Flat UI Share Buttons to Blogger</title>
		<link>https://www.bloggertipandtrick.net/flat-ui-share-buttons-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/flat-ui-share-buttons-blogger/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Fri, 01 Jul 2016 06:13:38 +0000</pubDate>
				<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[twitter]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=6166</guid>

					<description><![CDATA[<p>Do you want to add simple and quick loading, non-JavaScript share buttons to your blogger blog? Then follow the steps given below to add Flat UI Share Buttons to your blog. 1.Login to your blogger account and go to "Edit HTML" page. 2.Scroll down to where you see &#60;/head&#62; tag . 3.Copy below code and [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/flat-ui-share-buttons-blogger/">How to Add Flat UI Share Buttons to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Do you want to add simple and quick loading, non-JavaScript share buttons to your blogger blog? Then follow the steps given below to add <strong>Flat UI Share Buttons</strong> to your blog.</p>
<p>1.Login to your blogger account and go to "Edit HTML" page.</p>
<p>2.Scroll down to where you see &lt;/head&gt; tag .</p>
<p>3.Copy below code and paste it just before the &lt;/head&gt; tag:</p>
<pre style="border: 1px solid black; overflow: auto; width: 95%;">&lt;style type='text/css'&gt;
/* Blogger Share Buttons by www.bloggertipandtrick.net */
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,300,300italic,700,700italic,600,600italic&amp;subset=latin,latin-ext);
.blogger-share-buttons{color:rgb(126,126,126);display:block;font-family:'Open Sans',Tahoma,Verdana,Arial,sans-serif;font-size:14px;font-weight:normal;height:auto;line-height:24px;margin-top:10px;margin-bottom:10px;width:100%;width:100%;text-align:center;}
.blogger-share-buttons div{display:block;width:120px;margin:2px;display:inline-block;vertical-align:middle;}
.blogger-share-buttons a{text-decoration:none;display:block;padding-left:20px;color:#fff !important;font-weight:bold;-webkit-transition:background-color .3s;-moz-transition:background-color .3s;transition:background-color .3s;}
.blogger-share-buttons a{padding:7px 10px 7px 10px;}
.blogger-share-buttons a i{margin-right:10px;}
.blogger-share-buttons .fb-sharebtn a{background:#3B5999;}
.blogger-share-buttons .twitter-sharebtn a{background:#01BBF6;}
.blogger-share-buttons .gplus-sharebtn a{background:#D54135;}
.blogger-share-buttons .linkedin-sharebtn a{background:#136F9B;}
.blogger-share-buttons .pinterest-sharebtn a{background:#CB2027;}
.blogger-share-buttons .delicious-sharebtn a{background:#3173D1;}
.blogger-share-buttons .fb-sharebtn a:hover{background-color:rgb(50,75,129);}
.blogger-share-buttons .twitter-sharebtn a:hover{background-color:rgb(1,159,211);}
.blogger-share-buttons .gplus-sharebtn a:hover{background-color:rgb(191,52,40);}
.blogger-share-buttons .linkedin-sharebtn a:hover{background-color:rgb(15,89,125);}
.blogger-share-buttons .pinterest-sharebtn a:hover{background-color:rgb(174,28,35);}
.blogger-share-buttons .delicious-sharebtn a:hover{background-color:rgb(38,90,168);}
&lt;/style&gt;</pre>
<p>4. Now find this line:</p>
<pre style="border:1px solid black;overflow:auto;width:95%;">&lt;b:includable id='post' var='post'&gt;</pre>
<p>5. From that line scroll down slowly until you see a code more similar to this:</p>
<pre style="border:1px solid black;overflow:auto;width:95%;">&lt;b:if cond='data:post.title'&gt;
  &lt;h3 class='post-title entry-title' itemprop='name'&gt;
  &lt;b:if cond='data:post.link'&gt;
	&lt;a expr:href='data:post.link'&gt;&lt;data:post.title/&gt;&lt;/a&gt;
  &lt;b:else/&gt;
	&lt;b:if cond='data:post.url'&gt;
	  &lt;b:if cond='data:blog.url != data:post.url'&gt;
		&lt;a expr:href='data:post.url'&gt;&lt;data:post.title/&gt;&lt;/a&gt;
	  &lt;b:else/&gt;
		&lt;data:post.title/&gt;
	  &lt;/b:if&gt;
	&lt;b:else/&gt;
	  &lt;data:post.title/&gt;
	&lt;/b:if&gt;
  &lt;/b:if&gt;
  &lt;/h3&gt;
&lt;/b:if&gt;</pre>
<p>6.Copy below code and paste it after the above code:</p>
<pre style="border:1px solid black;overflow:auto;width:95%;">&lt;!-- Blogger Share Buttons by www.bloggertipandtrick.net --&gt;
&lt;div class='blogger-share-buttons'&gt;
    &lt;div class='fb-sharebtn'&gt;
		&lt;a expr:href='&amp;quot;https://www.facebook.com/share.php?v=4&amp;amp;src=bm&amp;amp;u=&amp;quot; + data:post.url + &amp;quot;&amp;amp;t=&amp;quot; + data:post.title' onclick='window.open(this.href,&amp;quot;sharer&amp;quot;,&amp;quot;toolbar=0,status=0,width=626,height=436&amp;quot;); return false;' rel='nofollow' target='_blank' title='Share this on Facebook'&gt;&lt;i class='fa fa-facebook' aria-hidden='true'&gt;&lt;/i&gt; Facebook&lt;/a&gt;
    &lt;/div&gt;
    &lt;div class='twitter-sharebtn'&gt;
		&lt;a expr:href='&amp;quot;https://twitter.com/home?status=&amp;quot; + data:post.title + &amp;quot; -- &amp;quot; + data:post.url' rel='nofollow' target='_blank' title='Tweet This!'&gt;&lt;i class='fa fa-twitter' aria-hidden='true'&gt;&lt;/i&gt; Twitter&lt;/a&gt;
    &lt;/div&gt;
    &lt;div class='gplus-sharebtn'&gt;
		&lt;a expr:href='&amp;quot;https://plus.google.com/share?url=&amp;quot; + data:post.url' onclick='javascript:window.open(this.href,   &amp;quot;&amp;quot;, &amp;quot;menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600&amp;quot;);return false;' rel='nofollow' target='_blank' title='Share this on Google+'&gt;&lt;i class='fa fa-google-plus' aria-hidden='true'&gt;&lt;/i&gt; Google+&lt;/a&gt;
    &lt;/div&gt;
    &lt;div class='linkedin-sharebtn'&gt;
		&lt;a expr:href='&amp;quot;https://www.linkedin.com/shareArticle?mini=true&amp;amp;title=&amp;quot; + data:post.title + &amp;quot;&amp;amp;url=&amp;quot; + data:post.url' rel='nofollow' target='_blank' title='Share this on Linkedin'&gt;&lt;i class='fa fa-linkedin' aria-hidden='true'&gt;&lt;/i&gt; Linkedin&lt;/a&gt;
    &lt;/div&gt;
    &lt;b:if cond='data:post.firstImageUrl'&gt;&lt;div class='pinterest-sharebtn'&gt;
		&lt;a expr:href='&amp;quot;https://pinterest.com/pin/create/button/?source_url=&amp;quot; + data:post.url + &amp;quot;&amp;amp;media=&amp;quot; + data:post.firstImageUrl + &amp;quot;&amp;amp;description=&amp;quot; + data:post.title' rel='nofollow' target='_blank' title='Share on Pinterest'&gt;&lt;i class='fa fa-pinterest' aria-hidden='true'&gt;&lt;/i&gt; Pinterest&lt;/a&gt;
    &lt;/div&gt;&lt;/b:if&gt;
    &lt;div class='delicious-sharebtn'&gt;
		&lt;a expr:href='&amp;quot;http://del.icio.us/post?url=&amp;quot; + data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' target='_blank' title='Share this on Delicious'&gt;&lt;i class='fa fa-delicious' aria-hidden='true'&gt;&lt;/i&gt; Delicious&lt;/a&gt;
    &lt;/div&gt;
&lt;/div&gt;</pre>
<p>7. Save your Blogger Template and refresh your site. Final result will look like this:</p>
<p><img fetchpriority="high" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2016/07/Flat-UI-Share-Buttons-to-Blogger.png" alt="Flat UI Share Buttons to Blogger" width="787" height="91" class="alignnone size-full wp-image-6168" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2016/07/Flat-UI-Share-Buttons-to-Blogger.png 787w, https://www.bloggertipandtrick.net/wp-content/uploads/2016/07/Flat-UI-Share-Buttons-to-Blogger-768x89.png 768w" sizes="(max-width: 787px) 100vw, 787px" /></p>
<p>The post <a href="https://www.bloggertipandtrick.net/flat-ui-share-buttons-blogger/">How to Add Flat UI Share Buttons to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/flat-ui-share-buttons-blogger/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Add Social Sexy Bookmarks v2 to Blogger</title>
		<link>https://www.bloggertipandtrick.net/add-social-sexy-bookmarks-v2-to-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/add-social-sexy-bookmarks-v2-to-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sun, 18 Oct 2015 06:00:00 +0000</pubDate>
				<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2010/06/how-to-add-social-sexy-bookmarks-v2-to-blogger.html</guid>

					<description><![CDATA[<p>This is the second version of "Sexy Social Bookmark for Blogger".The creator of Sexy Social Bookmarks is http://www.cssreflex.com/.For second version of sexy social bookmarks, you have to use jQuery. I hosted sexy bookmarks images(2 images) in Blogger. Below I explain how to add this sexy bookmarks v2 for your blogspot blog. If you like to [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-social-sexy-bookmarks-v2-to-blogger/">How To Add Social Sexy Bookmarks v2 to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This is the second version of "<a href="https://www.bloggertipandtrick.net/how-to-add-sexy-social-bookmark-to/" target="_blank">Sexy Social Bookmark for Blogger</a>".The creator of Sexy Social Bookmarks is <span style="font-weight: bold; text-decoration: underline;">http://www.cssreflex.com/</span>.For second version of sexy social bookmarks, you have to use jQuery. I hosted sexy bookmarks images(2 images) in Blogger. Below I explain how to add this sexy bookmarks v2 for your blogspot blog. If you like to add it to your blog then follow the steps given below.</p>
<p><img decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/10/Share-and-Love-Sexy-Bookmarks-Version-2.png" alt="Share and Love - Sexy Bookmarks - Version 2" width="512" height="263" class="alignnone size-full wp-image-5528" /></p>
<p>Tutorial updated: 2015/10/18</p>
<p>1.Log in to your Blogger account and go to "Edit HTML".</p>
<p>2.Scroll down to where you see <strong><span style="color: #ff0000;">&lt;/head&gt;</span></strong> tag.</p>
<p>3.Now add below code <span style="color: #3333ff;">before</span> <span style="color: #ff0000;">&lt;/head&gt;</span> tag.</p>
<pre style="height: 450px; overflow: auto; border: 1px solid black;">&lt;script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js' type='text/javascript'&gt;&lt;/script&gt;
&lt;script src='http://code.jquery.com/jquery-migrate-1.2.1.js'&gt;&lt;/script&gt;

&lt;script type='text/javascript'&gt;
//&lt;![CDATA[

jQuery(document).ready(function() {
	// xhtml 1.0 strict way of using target _blank
	jQuery('.sexy-bookmarks a.external').attr(&quot;target&quot;, &quot;_blank&quot;);
	// this block sets the auto vertical expand when there are more than
	// one row of bookmarks.
	var sexyBaseHeight = jQuery('.sexy-bookmarks').height();
	var sexyFullHeight = jQuery('.sexy-bookmarks ul.socialsbtt').height();
	if (sexyFullHeight &gt; sexyBaseHeight) {
		jQuery('.sexy-bookmarks-expand').hover(
			function() {
				jQuery(this).animate({
					height: sexyFullHeight + 'px'
				}, {
					duration: 400,
					queue: false
				});
			},
			function() {
				jQuery(this).animate({
					height: sexyBaseHeight + 'px'
				}, {
					duration: 400,
					queue: false
				});
			}
		);
	}
	// autocentering
	if (jQuery('.sexy-bookmarks-center')) {
		var sexyFullWidth = jQuery('.sexy-bookmarks').width();
		var sexyBookmarkWidth = jQuery('.sexy-bookmarks:first ul.socialsbtt li').width();
		var sexyBookmarkCount = jQuery('.sexy-bookmarks:first ul.socialsbtt li').length;
		var numPerRow = Math.floor(sexyFullWidth / sexyBookmarkWidth);
		var sexyRowWidth = Math.min(numPerRow, sexyBookmarkCount) * sexyBookmarkWidth;
		var sexyLeftMargin = (sexyFullWidth - sexyRowWidth) / 2;
		jQuery('.sexy-bookmarks-center').css('margin-left', sexyLeftMargin + 'px');
	}
});

//]]&gt;
&lt;/script&gt;

&lt;style type='text/css'&gt;
div.sexy-bookmarks{margin:20px 0 20px 0; border: 0;outline: none;clear:both !important;-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important;}
div.sexy-bookmarks-expand{height:29px; overflow:hidden}
.sexy-bookmarks-bg-sexy, .sexy-bookmarks-bg-love{background-image:url('http://2.bp.blogspot.com/-x0M4XT4hAy4/ViMtGjT-51I/AAAAAAAAM-8/_rnU2cOKDI4/s1600/sexytrans.png') !important; background-repeat:no-repeat}
div.sexy-bookmarks-bg-love{padding:26px 0 0 10px; background-position:left -1148px !important}
div.sexy-bookmarks ul.socialsbtt{width:100% !important; margin:0 !important; padding:0 !important; float:left}
div.sexy-bookmarks ul.socialsbtt li{display:inline !important; float:left !important; list-style-type:none !important; margin:0 !important; height:29px !important; width:60px !important; cursor:pointer !important; padding:0 !important}
div.sexy-bookmarks ul.socialsbtt li:before, div.sexy-bookmarks ul.socialsbtt li:after, div.sexy-bookmarks ul.socialsbtt li a:before, div.sexy-bookmarks ul.socialsbtt li a:after{content:none !important}
div.sexy-bookmarks ul.socialsbtt a{display:block !important; width:60px !important; height:29px !important; text-indent:-9999px !important; background-color:transparent !important}
div.sexy-bookmarks ul.socialsbtt a:hover{background-color:transparent !important}
.sexy-digg, .sexy-digg:hover, .sexy-reddit, .sexy-reddit:hover, .sexy-stumbleupon, .sexy-stumbleupon:hover, .sexy-delicious, .sexy-delicious:hover, .sexy-yahoobuzz, .sexy-yahoobuzz:hover, .sexy-blinklist, .sexy-blinklist:hover, .sexy-technorati, .sexy-technorati:hover, .sexy-facebook, .sexy-facebook:hover, .sexy-twitter, .sexy-twitter:hover, .sexy-myspace, .sexy-myspace:hover, .sexy-mixx, .sexy-mixx:hover, .sexy-scriptstyle, .sexy-scriptstyle:hover, .sexy-designfloat, .sexy-designfloat:hover, .sexy-comfeed, .sexy-comfeed:hover, .sexy-newsvine, .sexy-newsvine:hover, .sexy-linkedin, .sexy-linkedin:hover, .sexy-google, .sexy-google:hover, .sexy-friendfeed, .sexy-friendfeed:hover{background:url('http://3.bp.blogspot.com/-6HwqVMwZniw/ViMtHInF-AI/AAAAAAAAM_A/TBybj65pIKI/s0/sexy-sprite-new.png') no-repeat !important;border: 0;outline: none;}
.sexy-digg{background-position:-980px bottom !important}
.sexy-digg:hover{background-position:-980px top !important}
.sexy-reddit{background-position:-700px bottom !important}
.sexy-reddit:hover{background-position:-700px top !important}
.sexy-stumbleupon{background-position:-630px bottom !important}
.sexy-stumbleupon:hover{background-position:-630px top !important}
.sexy-delicious{background-position:-1190px bottom !important}
.sexy-delicious:hover{background-position:-1190px top !important}
.sexy-yahoobuzz{background-position:-1120px bottom !important}
.sexy-yahoobuzz:hover{background-position:-1120px top !important}
.sexy-blinklist{background-position:-1260px bottom !important}
.sexy-blinklist:hover{background-position:-1260px top !important}
.sexy-technorati{background-position:-560px bottom !important}
.sexy-technorati:hover{background-position:-560px top !important}
.sexy-myspace{background-position:-770px bottom !important}
.sexy-myspace:hover{background-position:-770px top !important}
.sexy-twitter{background-position:-490px bottom !important}
.sexy-twitter:hover{background-position:-490px top !important}
.sexy-facebook{background-position:-1330px bottom !important}
.sexy-facebook:hover{background-position:-1330px top !important}
.sexy-mixx{background-position:-840px bottom !important}
.sexy-mixx:hover{background-position:-840px top !important}
.sexy-scriptstyle{background-position:-280px bottom !important}
.sexy-scriptstyle:hover{background-position:-280px top !important}
.sexy-designfloat{background-position:-1050px bottom !important}
.sexy-designfloat:hover{background-position:-1050px top !important}
.sexy-newsvine{background-position:left bottom !important}
.sexy-newsvine:hover{background-position:left top !important}
.sexy-google{background-position:-210px bottom !important}
.sexy-google:hover{background-position:-210px top !important}
.sexy-comfeed{background-position:-420px bottom !important}
.sexy-comfeed:hover{background-position:-420px top !important}
.sexy-linkedin{background-position:-70px bottom !important}
.sexy-linkedin:hover{background-position:-70px top !important}
.sexy-friendfeed{background-position:-1750px bottom !important}
.sexy-friendfeed:hover{background-position:-1750px top !important}
.sexy-link{ margin-left:25px; float:left}
.sexy-link A{padding:10px 0; width:470px; text-align:right; border:0; outline:none}
&lt;/style&gt;</pre>
<p><span style="font-weight: bold;">NOTE :</span><br />
1. <a style="font-weight: bold;" href="http://www.box.net/shared/j80ns3cp7d" rel="nofollow" target="_blank">Download Image Files</a> if you need to host images yourself.<br />
2. If jQuery is already included into your theme remove this from above code:</p>
<pre style="overflow: auto; border: 1px solid black;">&lt;script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js' type='text/javascript'&gt;&lt;/script&gt;
&lt;script src='http://code.jquery.com/jquery-migrate-1.2.1.js'&gt;&lt;/script&gt;</pre>
<p>4.Scroll down to where you see <span style="font-weight: bold; color: #009900; font-size: 130%;">&lt;data:post.body/&gt;</span> tag.</p>
<p>5.Copy below code and paste it <span style="color: #3333ff;">just after</span> <span style="font-weight: bold;">&lt;data:post.body/&gt;</span>.</p>
<pre style="height: 310px; overflow: auto; border: 1px solid black;">&lt;b:if cond='data:blog.pageType == &quot;item&quot;'&gt;
&lt;div class='sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-love' style='margin:20px 0 20px 0 !important; padding:25px 0 0 10px !important; height:29px;/*the height of the icons (29px)*/ display:block !important; clear:both !important;'&gt;
&lt;ul class='socialsbtt'&gt;
&lt;li class='sexy-delicious'&gt;&lt;a class='external' expr:href='&amp;quot;http://del.icio.us/post?url=&amp;quot;+ data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Share this on del.icio.us'&gt;Share this on del.icio.us&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-digg'&gt;&lt;a class='external' expr:href='&amp;quot;http://digg.com/submit?phase=2&amp;amp;url=&amp;quot;+ data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Digg this!'&gt;Digg this!&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-stumbleupon'&gt;&lt;a class='external' expr:href='&amp;quot;http://www.stumbleupon.com/submit?url=&amp;quot;+ data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Stumble upon something good? Share it on StumbleUpon'&gt;Stumble upon something good? Share it on StumbleUpon&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-reddit'&gt;&lt;a class='external' expr:href='&amp;quot;http://reddit.com/submit?url=&amp;quot;+ data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Share this on Reddit'&gt;Share this on Reddit&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-google'&gt;&lt;a class='external' expr:href='&amp;quot;http://www.google.com/bookmarks/mark?op=add&amp;amp;bkmk=&amp;quot;+ data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Add this to Google Bookmarks'&gt;Add this to Google Bookmarks&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-twitter'&gt;&lt;a class='external' expr:href='&amp;quot;http://twitter.com/home?status=Reading: &amp;quot; + data:blog.title + &amp;quot; - &amp;quot; + data:post.url + &amp;quot; (@NAME)&amp;quot;' rel='nofollow' title='Tweet This!'&gt;Tweet This!&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-facebook'&gt;&lt;a class='external' expr:href='&amp;quot;http://www.facebook.com/share.php?u=&amp;quot;+ data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Share this on Facebook'&gt;Share this on Facebook&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-mixx'&gt;&lt;a class='external' expr:href='&amp;quot;http://www.mixx.com/submit?page_url=&amp;quot; + data:post.url' rel='nofollow' title='Share this on Mixx'&gt;Share this on Mixx&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-comfeed'&gt;&lt;a class='external' expr:href='data:blog.homepageUrl + &amp;quot;feeds/posts/default&amp;quot;' rel='nofollow' title='Subscribe'&gt;Subscribe&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-yahoobuzz'&gt;&lt;a class='external' expr:href='&amp;quot;http://buzz.yahoo.com/submit/?submitUrl=&amp;quot; + data:post.url' rel='nofollow' title='Buzz up!'&gt;Buzz up!&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-linkedin'&gt;&lt;a class='external' expr:href='&amp;quot;http://www.linkedin.com/shareArticle?mini=true&amp;amp;url=&amp;quot;+ data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Share this on Linkedin'&gt;Share this on Linkedin&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-designfloat'&gt;&lt;a class='external' expr:href='&amp;quot;http://www.designfloat.com/submit.php?url=&amp;quot;+ data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Submit this to DesignFloat'&gt;Submit this to DesignFloat&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-technorati'&gt;&lt;a class='external' expr:href='&amp;quot;http://technorati.com/faves?add=&amp;quot;+ data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Share this on Technorati'&gt;Share this on Technorati&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-scriptstyle'&gt;&lt;a class='external' expr:href='&amp;quot;http://scriptandstyle.com/submit?url=&amp;quot;+ data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Submit this to Script &amp;amp; Style'&gt;Submit this to Script &amp;amp; Style&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-myspace'&gt;&lt;a class='external' expr:href='&amp;quot;http://www.myspace.com/Modules/PostTo/Pages/?u=http&amp;quot;+ data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Post this to MySpace'&gt;Post this to MySpace&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-blinklist'&gt;&lt;a class='external' expr:href='&amp;quot;http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;amp;Url=&amp;quot;+ data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Share this on Blinklist'&gt;Share this on Blinklist&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-friendfeed'&gt;&lt;a class='external' expr:href='&amp;quot;http://friendfeed.com/?url=&amp;quot; + data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Share this on FriendFeed'&gt;Share this on FriendFeed&lt;/a&gt;&lt;/li&gt;
&lt;li class='sexy-newsvine'&gt;&lt;a class='external' expr:href='&amp;quot;http://www.newsvine.com/_tools/seed&amp;amp;save?u=&amp;quot;+ data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Seed this on Newsvine'&gt;Seed this on Newsvine&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div style='clear:both;'/&gt;
&lt;/div&gt;
&lt;/b:if&gt;</pre>
<p>6.Now save your template and you are done.</p>
<p><img decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2010/06/Sexy-Social-Bookmarks-Blogger.gif" alt="Sexy Social Bookmarks Blogger" width="532" height="290" class="alignnone size-full wp-image-5526" /></p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-social-sexy-bookmarks-v2-to-blogger/">How To Add Social Sexy Bookmarks v2 to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/add-social-sexy-bookmarks-v2-to-blogger/feed/</wfw:commentRss>
			<slash:comments>21</slash:comments>
		
		
			</item>
		<item>
		<title>How to Add Simple Post Share Buttons to Blogger</title>
		<link>https://www.bloggertipandtrick.net/add-simple-post-share-buttons-to-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/add-simple-post-share-buttons-to-blogger/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sun, 22 Feb 2015 05:23:46 +0000</pubDate>
				<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[twitter]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5336</guid>

					<description><![CDATA[<p>This easy to follow blogger tutorial explains how to add simple and beautiful post share buttons into your blogger blog. You can share your posts on "Facebook", "Twitter", "Google Plus", "Stumbleupon" and "Digg" social networks after adding this buttons into your blog. Here I am going to add this share buttons below post title in [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-simple-post-share-buttons-to-blogger/">How to Add Simple Post Share Buttons to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This easy to follow blogger tutorial explains how to add simple and beautiful post share buttons into your blogger blog. You can share your posts on "Facebook", "Twitter", "Google Plus", "Stumbleupon" and "Digg" social networks after adding this buttons into your blog. </p>
<p>Here I am going to add this share buttons below post title in my blogger blog.</p>
<p>First go to "Edit HTML" of your blog and Find <strong>]]&gt;&lt;/b:skin&gt;</strong> tag.</p>
<p>Add below code <em>just above</em> ]]&gt;&lt;/b:skin&gt; tag:</p>
<pre style="border: 1px solid black; overflow: auto; width: 90%;">.btt-socialshare{margin:10px 0}
.btt-socialshareul{margin:0!important;padding:0!important;list-style:none;list-style-type:none;line-height:1}
.btt-socialshareul li{margin:0 10px 0 0 !important;padding:3px 8px!important;list-style:none!important;list-style-type:none;display:inline-block}
.btt-socialshareul li.btt-share-this{padding:3px 8px 3px 0 !important}
.btt-socialshareul li.btt-facebook{background:#3c5b9b!important}
.btt-socialshareul li.btt-twitter{background:#2daae1!important}
.btt-socialshareul li.btt-google{background:#f63e28!important}
.btt-socialshareul li.btt-stumbleupon{background:#eb4924!important}
.btt-socialshareul li.btt-digg{background:#1b5891!important;margin:0!important}
.btt-socialshareul li a,.btt-socialshareul li a:visited{color:#fff!important;text-decoration:none!important;font-style:italic}
.btt-socialshareul li a:hover,.btt-socialshareul li a:active{color:#fff!important;text-decoration:underline!important}
.btt-socialshareul li p{margin:0}</pre>
<p>Now find this line:</p>
<pre style="border: 1px solid black; overflow: auto; width: 90%;">&lt;b:includable id='post' var='post'&gt;</pre>
<p>Scroll down slowly until you see this line:</p>
<pre style="border: 1px solid black; overflow: auto; width: 90%;">&lt;div class='post-header-line-1'/&gt;</pre>
<p>Now add below code <em>just after</em> above line:</p>
<pre style="border: 1px solid black; overflow: auto; width: 90%;">&lt;b:if cond='data:blog.pageType == &quot;item&quot;'&gt;
&lt;div class='btt-socialshare'&gt;
&lt;ul class='btt-socialshareul' id='btt-socialshareul'&gt;
&lt;li class='btt-share-this'&gt;&lt;p&gt;Share This Article  &lt;/p&gt;&lt;/li&gt;
&lt;li class='btt-facebook'&gt;
&lt;a expr:href='&amp;quot;http://www.facebook.com/share.php?v=4&amp;amp;src=bm&amp;amp;u=&amp;quot; + data:post.url + &amp;quot;&amp;amp;t=&amp;quot; + data:post.title' onclick='window.open(this.href,&amp;quot;sharer&amp;quot;,&amp;quot;toolbar=0,status=0,width=626,height=436&amp;quot;); return false;' rel='nofollow' title='Share this on Facebook'&gt;&lt;p&gt;Facebook&lt;/p&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;li class='btt-twitter'&gt;
&lt;a expr:href='&amp;quot;http://twitter.com/home?status=&amp;quot; + data:post.title + &amp;quot; -- &amp;quot; + data:post.url' rel='nofollow' title='Tweet This!'&gt;&lt;p&gt;Twitter&lt;/p&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;li class='btt-google'&gt;
&lt;a expr:href='&amp;quot;https://plus.google.com/share?url=&amp;quot; + data:post.url' onclick='javascript:window.open(this.href,   &amp;quot;&amp;quot;, &amp;quot;menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600&amp;quot;);return false;' rel='nofollow' title='Share this on Google+'&gt;&lt;p&gt;Google+&lt;/p&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;li class='btt-stumbleupon'&gt;
&lt;a expr:href='&amp;quot;http://www.stumbleupon.com/submit?url=&amp;quot; + data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Stumble upon something good? Share it on StumbleUpon'&gt;&lt;p&gt;Stumble&lt;/p&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;li class='btt-digg'&gt;
&lt;a expr:href='&amp;quot;http://digg.com/submit?phase=2&amp;amp;url=&amp;quot; + data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' title='Digg this!'&gt;&lt;p&gt;Digg&lt;/p&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;/b:if&gt;</pre>
<p>Save your theme. Now social buttons will be displayed in post pages of your blog.</p>
<p>Find results will be look like this:</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/02/Blogger-Social-Share-Buttons.png" alt="Blogger Social Share Buttons" width="546" height="154" class="alignnone size-full wp-image-5337" /></p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-simple-post-share-buttons-to-blogger/">How to Add Simple Post Share Buttons to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/add-simple-post-share-buttons-to-blogger/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Add AddThis Smart Layers to Blogger</title>
		<link>https://www.bloggertipandtrick.net/add-addthis-smart-layers-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/add-addthis-smart-layers-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Fri, 08 Nov 2013 14:03:08 +0000</pubDate>
				<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[internet]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=3847</guid>

					<description><![CDATA[<p>AddThis.com is a web's largest social infrastructure and analytic platform. They have been helping publishers and brands weave a more personal and social web with their sharing tools. Smart Layers is a new service introduced by them. Smart Layers make your site smarter. It Increases traffic, engagement and revenue by instantly showing the right social [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-addthis-smart-layers-blogger/">How to Add AddThis Smart Layers to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>AddThis.com is a web's largest social infrastructure and analytic platform. They have been helping publishers and brands weave a more personal and social web with their sharing tools. <strong>Smart Layers</strong> is a new service introduced by them. Smart Layers make your site smarter. It Increases traffic, engagement and revenue by instantly showing the right social tools and content to every visitor. It's one piece of code, mobile-ready and free!</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2013/11/Addthis-Smart-Layers.png" alt="Addthis Smart Layers" width="700" height="512" class="alignnone size-full wp-image-3848" /></p>
<p>This is a live demonstration of Addthis.com Smart Layers: </p>
<p><a href="https://www.addthis.com/smart-layers-demo.html" target="_blank" rel="nofollow">https://www.addthis.com/smart-layers-demo.html</a></p>
<p>About AddThis SmartLayers on Youtube:<br />
<iframe loading="lazy" width="640" height="390" src="//www.youtube.com/embed/ZdX7AFgJi4o" frameborder="0" allowfullscreen></iframe></p>
<p>To add Addthis Smart Layers to your site visit here: <a href="https://www.addthis.com/get/smart-layers" target="_blank" rel="nofollow">https://www.addthis.com/get/smart-layers</a></p>
<p>Select platform as "Blogger".</p>
<p>Smart Layers includes follow buttons, share buttons, "What's Next" and "Recommended Content" features. You can "<strong>ON</strong>" or "<strong>OFF</strong>" these features as you like.</p>
<p>After selecting features and entering your information, click on "<strong>Install Blogger Widget</strong>" button.</p>
<p>You will be directed to the Blogger.com. Select you blog name from drop down menu and click on "Add Widget" button.</p>
<p>Done! You successfully added smart AddThis Smart Layers to your site.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-addthis-smart-layers-blogger/">How to Add AddThis Smart Layers to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/add-addthis-smart-layers-blogger/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>How To Add Perfect Share Box to Blogger</title>
		<link>https://www.bloggertipandtrick.net/how-to-add-perfect-share-box-to-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/how-to-add-perfect-share-box-to-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 22 Jan 2013 06:04:00 +0000</pubDate>
				<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2011/04/how-to-add-perfect-share-box-to-blogger.html</guid>

					<description><![CDATA[<p>In this tutorial, I am going to show how to add a useful share box for your blogger blog. This share box contains official Tweet button with counter, official Facebook share button with counter, official Google plus button with counter, official Stumbleupon button with counter, Pinterest button, Linkedin button, Print button and Facebook like button. [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-add-perfect-share-box-to-blogger/">How To Add Perfect Share Box to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In this tutorial, I am going to show how to add a useful share box for your blogger blog. This share box contains official Tweet button with counter, official Facebook share button with counter, official Google plus button with counter, official Stumbleupon button with counter, Pinterest button, Linkedin button, Print button and Facebook like button. I have configure all this button for Blogger blogs, so you can add this share box quickly to your blog.</p>
<p><strong>Tutorial Updated : 2013/01/22</strong></p>
<p><a title="Perfect Share Box for Blogger Blogs" href="https://www.bloggertipandtrick.net/how-to-add-perfect-share-box-to-blogger/"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3643" alt="Perfect Share Box for Blogger Blogs" src="https://www.bloggertipandtrick.net/wp-content/uploads/2011/04/Perfect-Share-Box-for-Blogger-Blogs.png" width="289" height="241" /></a></p>
<p>Now follow the steps given below to add this share box for your blog.</p>
<p>1.Go to "Template" --&gt; "Edit HTML" of your blog.</p>
<p>2.Click on "<span style="color: #3333ff;">Expand Widget Templates</span>"</p>
<p>3.Add this code <strong>just above</strong> <span style="color: #ff0000;"><strong>&lt;head&gt;</strong></span> tag:</p>
<pre style="width: 90%; overflow: auto; border: 1px solid black;">&lt;script src='http://apis.google.com/js/plusone.js' type='text/javascript'&gt;
{lang: 'en-US'}
&lt;/script&gt;</pre>
<p>4.Now Scroll down to where you see below code:</p>
<p><center><span style="font-size: 130%;">&lt;div class='post-header-line-1'/&gt;</span></center>&nbsp;</p>
<p>5.Copy Share Box code given below and paste it <span style="font-weight: bold; color: #3333ff;">just below</span> the above code.</p>
<p><span style="font-weight: bold; color: #cc33cc;">NOTE:</span> If you can't find <span style="font-weight: bold;">&lt;div class='post-header-line-1'/&gt;</span> in your template, paste your "Share Box" code <span style="font-weight: bold; color: #3333ff;">just before</span> <span style="font-weight: bold; color: #ff0000;">&lt;data:post.body/&gt;</span> .</p>
<pre style="height: 350px; width: 90%; overflow: auto; border: 1px solid black;"><span style="color: #339966;">&lt;b:if cond='data:blog.pageType == "item"'&gt;</span>

&lt;style type='text/css'&gt;
.multisharebox{background:none repeat scroll 0 0 #EFEFEF;float:right;margin:5px 0 3px 10px;padding:0 5px 0;text-shadow:0 1px 0 #FFF;width:260px;border:4px solid #d8dfea}
.multisharebox table{margin-bottom:0 !important}
.multisharebox td{padding:4px 3px !important}
.fb-like-boxtop{background:none repeat scroll 0 0 #EDEFF4;border:1px solid #D8DFEA;color:#000;float:right;font-size:11px;margin:0 0;padding:5px 10px;text-align:left;width:230px}
.fb-like-boxtop a{color:#000;text-decoration:none}
.fb-like-boxtop a:hover{color:#000;text-decoration:underline}
.fb-like-box{background:none repeat scroll 0 0 #EDEFF4;border:1px solid #D8DFEA;color:#000;float:right;font-size:11px;height:60px;margin:5px 0;overflow:hidden;padding:5px 10px;text-align:left;width:230px}
&lt;/style&gt;

&lt;!-- Perfect Share Box : Created by www.bloggertipandtrick.net  --&gt;
&lt;div class='multisharebox'&gt;
&lt;table&gt;&lt;tr&gt;
&lt;td&gt;&lt;table&gt;&lt;tr&gt;
&lt;td&gt;&lt;a class='twitter-share-button' data-count='vertical' data-lang='en' data-related='' data-via='' expr:data-text='data:post.title' expr:data-url='data:post.url' href='http://twitter.com/share' rel='nofollow'/&gt;
&lt;b:if cond='data:post.isFirstPost'&gt;
&lt;script src='http://platform.twitter.com/widgets.js' type='text/javascript'&gt;
&lt;/script&gt;
&lt;/b:if&gt;&lt;/td&gt;
&lt;td&gt;&lt;script expr:src='&amp;quot;http://www.stumbleupon.com/hostedbadge.php?s=5&amp;amp;r=&amp;quot; + data:post.url'/&gt;&lt;/td&gt;
&lt;td&gt;&lt;g:plusone size="tall" expr:href="data:post.canonicalUrl"/&gt;&lt;/td&gt;
&lt;td&gt;&lt;a expr:share_url='data:post.url' name='fb_share' rel='nofollow' type='box_count'/&gt;
&lt;script src='http://static.ak.fbcdn.net/connect.php/js/FB.Share' type='text/javascript'/&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td&gt;&lt;div class='fb-like-boxtop'&gt;&lt;a class='pin-it-button' count-layout='none' expr:href='&amp;quot;http://pinterest.com/pin/create/button/?url=&amp;quot; + data:post.url'&gt;Pin It Now!&lt;/a&gt;
&lt;a href='javascript:void(run_pinmarklet())' style='height:20px; display:inline-block;'/&gt;
&lt;script src='http://assets.pinterest.com/js/pinit.js' type='text/javascript'/&gt;
&lt;script type='text/javascript'&gt;
function run_pinmarklet() {
var e=document.createElement(&amp;#39;script&amp;#39;); e.setAttribute(&amp;#39;type&amp;#39;,&amp;#39;text/javascript&amp;#39;);
e.setAttribute(&amp;#39;charset&amp;#39;,&amp;#39;UTF-8&amp;#39;);
e.setAttribute(&amp;#39;src&amp;#39;,&amp;#39;http://assets.pinterest.com/js/pinmarklet.js?r=&amp;#39; + Math.random()*99999999);
document.body.appendChild(e);
}
&lt;/script&gt; &lt;script src='http://platform.linkedin.com/in.js' type='text/javascript'/&gt;&lt;script data-counter='right' expr:data-url='data:post.url' type='in/share'/&gt; &lt;a href='javascript:window.print();'&gt;&lt;img src='http://4.bp.blogspot.com/-2gJyVWWzvxo/UP4jFrCs6-I/AAAAAAAAECY/WE5hMFoeSwA/s1600/printbutton.png'/&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td&gt;&lt;div class='fb-like-box'&gt;
Do you like this post?
&lt;iframe allowTransparency='true' expr:src='&amp;quot;http://www.facebook.com/plugins/like.php?href=&amp;quot; + data:post.url + &amp;quot;&amp;amp;layout=standard&amp;amp;show_faces=false&amp;amp;width=230&amp;amp;action=like&amp;amp;font=arial&amp;amp;colorscheme=light&amp;quot;' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:230px; height:40px;'/&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;!-- Perfect Share Box : Created by www.bloggertipandtrick.net  --&gt;

<span style="color: #339966;">&lt;/b:if&gt;</span></pre>
<p><span style="font-weight: bold;">Note :</span> This share box now will add to your Blogger post pages only. If you want to show it in every pages, then simply remove green lines from the code.</p>
<p>6. Save your template and you are done.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-add-perfect-share-box-to-blogger/">How To Add Perfect Share Box to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/how-to-add-perfect-share-box-to-blogger/feed/</wfw:commentRss>
			<slash:comments>39</slash:comments>
		
		
			</item>
		<item>
		<title>How To Add &#034;Linkedin&#034; Share Button with Counter to Blogger</title>
		<link>https://www.bloggertipandtrick.net/add-linkedin-share-button-to-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/add-linkedin-share-button-to-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Thu, 03 Feb 2011 18:51:00 +0000</pubDate>
				<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[internet]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2011/02/how-to-add-linkedin-share-button-with-counter-to-blogger.html</guid>

					<description><![CDATA[<p>LinkedIn operates the world’s largest professional network on the Internet with more than 90 million members in over 200 countries and territories. LinkedIn has created wide opportunities for many people. There are also a number of people who are very curious to know how to view LinkedIn profile as someone else. Linkedin has also introduced [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-linkedin-share-button-to-blogger/">How To Add &quot;Linkedin&quot; Share Button with Counter to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/TUr5dfcM_sI/AAAAAAAACVc/doBtKcsxXlk/s1600/linkedin.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5569538174248353474" style="float: right; border: none; cursor: pointer; width: 256px; height: 256px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/TUr5dfcM_sI/AAAAAAAACVc/doBtKcsxXlk/s400/linkedin.png" alt="" border="0" /></a>LinkedIn operates the world’s largest professional network on the Internet with more than 90 million members in over 200 countries and territories. LinkedIn has created wide opportunities for many people. There are also a number of people who are very curious to know <a href="https://www.searchinventure.com/2022/04/view-linkedin-profile-as-someone-else.html" rel="noopener" target="_blank">how to view LinkedIn profile as someone else</a>. Linkedin has also introduced the Linkedin share button for websites,blogs to enable their readers and visitors to share the articles of those websites easily on Linkedin. LinkedIn is a place where busy and on-the-go professionals rely on their network to stay informed and make decisions. There were nearly two billion people searches on LinkedIn in 2010.</p>
<p>You can add a Linkedin share button to your website and enable visitors to share your content with their network.</p>
<p>In this tutorial I am going to explain how to add a Linkedin share button to your blogger blog.</p>
<p>There are 3 types of Linkedin share buttons : <span style="font-weight: bold;">Vertical count</span>, <span style="font-weight: bold;">Horizontal count</span> and <span style="font-weight: bold;">No count</span>.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://4.bp.blogspot.com/_-j7_-ccACuU/TUr-5AgXF2I/AAAAAAAACVk/BzN0yFacMq0/s1600/Linkedin%2Bshare%2Bbutton-types.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5569544144538769250" style="cursor: pointer; width: 437px; height: 137px;" src="https://4.bp.blogspot.com/_-j7_-ccACuU/TUr-5AgXF2I/AAAAAAAACVk/BzN0yFacMq0/Linkedin%2Bshare%2Bbutton-types.png" alt="Linkedin share button types" border="0" /></a></p>
<p>If you like to add these Linkedin share button to your blogger blog,then follow the steps given below.</p>
<p>1.Login to your blogger Dashboard--&gt; Design- -&gt; Edit HTML</p>
<p>2.Click on "<span style="color: #3333ff;">Expand Widget Templates</span>"</p>
<p>3.Scroll down to where you see below code:</p>
<p><center><span style="font-size: 130%;">&lt;div class='post-header-line-1'/&gt;</span></center>&nbsp;</p>
<p>4.Now Copy your "Linkedin share button" code and paste it <span style="font-weight: bold; color: #3333ff;">just below</span> the above code.</p>
<p><span style="font-weight: bold; color: #cc33cc;">NOTE:</span> If you can't find <span style="font-weight: bold;">&lt;div class='post-header-line-1'/&gt;</span> in your template, paste your "Linkedin share button" code <span style="font-weight: bold; color: #3333ff;">just before</span> <span style="font-weight: bold; color: #ff0000;">&lt;data:post.body/&gt;</span> .</p>
<p><span style="font-weight: bold; font-family: arial; font-size: 130%;">Code 1 : Vertical Count</span></p>
<pre style="height: 120px; width: 90%; overflow: auto; border: 1px solid black;"><span style="color: #339966;">&lt;b:if cond='data:blog.pageType == "item"'&gt;</span>
&lt;div style='float:right;margin-left:10px;'&gt;
&lt;script src='http://platform.linkedin.com/in.js' type='text/javascript'/&gt;&lt;script data-counter='top' expr:data-url='data:post.url' type='in/share'/&gt;
&lt;/div&gt;
<span style="color: #339966;">&lt;/b:if&gt;</span></pre>
<p>Result:<br />
<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://1.bp.blogspot.com/_-j7_-ccACuU/TUr5cpCqpSI/AAAAAAAACVE/TcAN-RpQ3I0/s1600/Linkedin%2Bshare%2Bbutton%2B-%2BVertical%2BCount.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5569538159645730082" style="cursor: pointer; width: 120px; height: 114px;" src="https://1.bp.blogspot.com/_-j7_-ccACuU/TUr5cpCqpSI/AAAAAAAACVE/TcAN-RpQ3I0/s400/Linkedin%2Bshare%2Bbutton%2B-%2BVertical%2BCount.png" alt="" border="0" /></a></p>
<p><span style="font-weight: bold; font-family: arial; font-size: 130%;">Code 2 : Horizontal Count</span></p>
<pre style="height: 120px; width: 90%; overflow: auto; border: 1px solid black;"><span style="color: #339966;">&lt;b:if cond='data:blog.pageType == "item"'&gt;</span>
&lt;div style='float:right;margin-left:10px;'&gt;
&lt;script src='http://platform.linkedin.com/in.js' type='text/javascript'/&gt;&lt;script data-counter='right' expr:data-url='data:post.url' type='in/share'/&gt;
&lt;/div&gt;
<span style="color: #339966;">&lt;/b:if&gt;</span></pre>
<p>Result:<br />
<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://3.bp.blogspot.com/_-j7_-ccACuU/TUr5cyA3tPI/AAAAAAAACVM/Bp3ftbNGTmA/s1600/Linkedin%2Bshare%2Bbutton%2Btypes%2B-%2BHorizontal%2BCount.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5569538162054116594" style="cursor: pointer; width: 148px; height: 114px;" src="https://3.bp.blogspot.com/_-j7_-ccACuU/TUr5cyA3tPI/AAAAAAAACVM/Bp3ftbNGTmA/s400/Linkedin%2Bshare%2Bbutton%2Btypes%2B-%2BHorizontal%2BCount.png" alt="" border="0" /></a></p>
<p><span style="font-weight: bold; font-family: arial; font-size: 130%;">Code 3 : No Count</span></p>
<pre style="height: 120px; width: 90%; overflow: auto; border: 1px solid black;"><span style="color: #339966;">&lt;b:if cond='data:blog.pageType == "item"'&gt;</span>
&lt;div style='float:right;margin-left:10px;'&gt;
&lt;script src='http://platform.linkedin.com/in.js' type='text/javascript'/&gt;&lt;script expr:data-url='data:post.url' type='in/share'/&gt;
&lt;/div&gt;
<span style="color: #339966;">&lt;/b:if&gt;</span></pre>
<p>Result:<br />
<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/TUr5dDl9cdI/AAAAAAAACVU/0S8JMhk4FM4/s1600/Linkedin%2Bshare%2Bbutton%2Btypes%2B-%2BNo%2BCount.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5569538166773084626" style="cursor: pointer; width: 109px; height: 114px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/TUr5dDl9cdI/AAAAAAAACVU/0S8JMhk4FM4/s400/Linkedin%2Bshare%2Bbutton%2Btypes%2B-%2BNo%2BCount.png" alt="" border="0" /></a></p>
<p>5.Now save your template.</p>
<p>Refresh your site. Now you can see Linkedin share buttons in <span style="font-weight: bold;">every post pages</span>.</p>
<p>You can view more info from here:<ins> http://www.linkedin.com/publishers</ins></p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-linkedin-share-button-to-blogger/">How To Add &quot;Linkedin&quot; Share Button with Counter to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/add-linkedin-share-button-to-blogger/feed/</wfw:commentRss>
			<slash:comments>11</slash:comments>
		
		
			</item>
		<item>
		<title>How To Add &#034;BlogThis!&#034; Feature to Blogger Blog</title>
		<link>https://www.bloggertipandtrick.net/add-blogthis-feature-to-blogger-blog/</link>
					<comments>https://www.bloggertipandtrick.net/add-blogthis-feature-to-blogger-blog/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Wed, 25 Aug 2010 02:58:00 +0000</pubDate>
				<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[java script]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2010/08/how-to-add-blogthis-feature-to-blogger-blog.html</guid>

					<description><![CDATA[<p>You can see a "BlogThis!" button in the blogger official share buttons set.When other blogspot user click on this "BlogThis" button,he/she can share your blog posts easily through Blogger. But if you want to add this "BlogThis" feature to your blogger blog as a Text Link,then this tutorial will helpful for you. What is BlogThis! [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-blogthis-feature-to-blogger-blog/">How To Add &quot;BlogThis!&quot; Feature to Blogger Blog</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>You can see a "<span style="font-weight: bold;">BlogThis!</span>" button in the blogger official share buttons set.When other blogspot user click on this "BlogThis" button,he/she can share your blog posts easily through Blogger.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://1.bp.blogspot.com/_-j7_-ccACuU/THSD5kLUheI/AAAAAAAACD8/qQnLOHPerKI/s1600/BlogThis+Button.png"><img decoding="async" style="cursor: pointer; width: 137px; height: 73px;" src="https://1.bp.blogspot.com/_-j7_-ccACuU/THSD5kLUheI/AAAAAAAACD8/qQnLOHPerKI/BlogThis+Button.png" alt="" id="BLOGGER_PHOTO_ID_5509173269167900130" border="0" /></a></p>
<p>But if you want to add this "BlogThis" feature to your blogger blog as a <span style="font-weight: bold;">Text Link</span>,then this tutorial will helpful for you.</p>
<blockquote><p><span style="font-weight: bold;">What is BlogThis! ?</span></p>
<p>BlogThis! is an easy way to make a blog post without visiting blogger.com. Once you add the BlogThis! link to your browser's toolbar, blogging will be a snap. Or rather, a click. Clicking BlogThis! creates a mini-interface to Blogger prepopulated with a link to the web page you are visiting, as well as any text you have highlighted on that page. Add additional text if you wish and then publish or post from within BlogThis!</p>
<p>                                                       From Blogger Help</p></blockquote>
<p>Now follow the steps given below to add "<span style="font-weight: bold;">BlogThis!</span>" feature as a text link to your blogspot blog.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://1.bp.blogspot.com/_-j7_-ccACuU/THSD5qvIvqI/AAAAAAAACEE/1Aypz6gS7bE/s1600/BlogThis+Link+for+blogspot.png"><img decoding="async" style="cursor: pointer; width: 481px; height: 321px;" src="https://1.bp.blogspot.com/_-j7_-ccACuU/THSD5qvIvqI/AAAAAAAACEE/1Aypz6gS7bE/BlogThis+Link+for+blogspot.png" alt="" id="BLOGGER_PHOTO_ID_5509173270928735906" border="0" /></a></p>
<p>1.Login to your blogger Dashboard--> Design- -> Edit HTML</p>
<p>2.Click on "<span style="color: rgb(51, 51, 255);">Expand Widget Templates</span>"</p>
<p>3.Scroll down to where you see below code:</p>
<div style="text-align: center; color: rgb(0, 153, 0);">
<pre style="height: 50px; width: 60%; overflow: auto; border: 1px solid black; font-weight: bold;"><span style="font-size:180%;">&lt;data:post.body/&gt;</span></pre>
</div>
<p>4.Now copy the code given below and paste it <span style="color: rgb(51, 51, 255);">just before</span> the <span style="font-weight: bold;">&lt;data:post.body/&gt;</span>.</p>
<pre style="height: 150px; width: 90%; overflow: auto; border: 1px solid black;"><span style="color: rgb(204, 51, 204);">&lt;b:if cond='data:blog.pageType == &amp;quot;item&amp;quot;'&gt;</span><br />&lt;div style='float:<span style="font-weight: bold;">right</span>;margin-right:<span style="font-weight: bold;">10px</span>;'&gt;<br /><br />&amp;lt;a href=&amp;quot;javascript:popw=&amp;#39;&amp;#39;;Q=&amp;#39;&amp;#39;;x=document;y=window;if(x.selection) {Q=x.selection.createRange().text;} else if (y.getSelection) {Q=y.getSelection();} else if (x.getSelection) {Q=x.getSelection();}popw = y.open(&amp;#39;http://www.blogger.com/blog_this.pyra?t=&amp;#39; + escape(Q) + &amp;#39;&amp;amp;u=&amp;#39; + escape(location.href) + &amp;#39;&amp;amp;n=&amp;#39; + escape(document.title),&amp;#39;bloggerForm&amp;#39;,&amp;#39;scrollbars=no,width=475,height=300,top=175,left=75,status=yes,resizable=yes&amp;#39;);if (!document.all) T = setTimeout(&amp;#39;popw.focus()&amp;#39;,50);void(0);&amp;quot;&amp;gt;BlogThis!&amp;lt;/a&amp;gt;<br /><br />&lt;/div&gt;<br /><span style="color: rgb(204, 51, 204);">&lt;/b:if&gt;</span></pre>
<p>5.Save your template.Now you can see a "BlogThis!" link in your <span style="font-weight: bold;">every blog post(not homepage)</span>.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-blogthis-feature-to-blogger-blog/">How To Add &quot;BlogThis!&quot; Feature to Blogger Blog</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/add-blogthis-feature-to-blogger-blog/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title>How To Add Twitter Official Tweet Buttons to Blogger</title>
		<link>https://www.bloggertipandtrick.net/twitter-official-tweet-buttons-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/twitter-official-tweet-buttons-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 17 Aug 2010 00:23:00 +0000</pubDate>
				<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2010/08/how-to-add-twitter-official-tweet-buttons-to-blogger.html</guid>

					<description><![CDATA[<p>Few days ago Twitter has introduced their own tweet buttons for web masters.Now you can use this twitter button directly share your posts through twitter without any third party web site.So you and your visitors don't want to authenticate any third party web site to access your Twitter account.These new tweet button loads very fast [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/twitter-official-tweet-buttons-blogger/">How To Add Twitter Official Tweet Buttons to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Few days ago Twitter has introduced their own tweet buttons for web masters.Now you can use this twitter button directly share your posts through twitter without any third party web site.So you and your visitors don't want to authenticate any third party web site to access your Twitter account.These new tweet button loads very fast and anyone can share your article with in few seconds.There are 3 types of Beautiful Tweet buttons : Vertical count, Horizontal count and No count.Here I am going to describe how to add these Twitter buttons to your blogger blog.</p>
<p>If you like o add these Twitter official share button to your blogger blog,then follow the steps given below.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://3.bp.blogspot.com/_-j7_-ccACuU/TGnaE2C4xWI/AAAAAAAACDU/SU8BvzdpISw/s1600/Twiiter+Tweet+Buttons.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5506171796199097698" style="cursor: pointer; width: 423px; height: 128px;" src="https://3.bp.blogspot.com/_-j7_-ccACuU/TGnaE2C4xWI/AAAAAAAACDU/SU8BvzdpISw/Twiiter+Tweet+Buttons.png" alt="" border="0" /></a></p>
<p>1.Login to your blogger Dashboard--&gt; Design- -&gt; Edit HTML</p>
<p>2.Click on "<span style="color: #3333ff;">Expand Widget Templates</span>"</p>
<p>3.Scroll down to where you see below code:</p>
<p><center><span style="font-size: 130%;">&lt;div class='post-header-line-1'/&gt;</span></center>&nbsp;</p>
<p>4.Now Copy your "Twitter tweet button" code and paste it <span style="font-weight: bold; color: #3333ff;">just below</span> the above code.</p>
<p><span style="font-weight: bold; color: #cc33cc;">NOTE:</span> If you can't find <span style="font-weight: bold;">&lt;div class='post-header-line-1'/&gt;</span> in your template, paste your "Twitter tweet button" code <span style="font-weight: bold; color: #3333ff;">just before</span> <span style="font-weight: bold; color: #ff0000;">&lt;data:post.body/&gt;</span> .</p>
<p><span style="font-weight: bold; font-family: arial; font-size: 130%;">Code 1 : Vertical Count</span></p>
<pre style="height: 120px; width: 90%; overflow: auto; border: 1px solid black;"><span style="color: #ff00ff;">&lt;b:if cond='data:blog.pageType == "item"'&gt;</span>
&lt;div style='float:right;margin-right:10px;'&gt;
&lt;a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-via="TWITTER-USERNAME"&gt;Tweet&lt;/a&gt;&lt;script type="text/javascript" src="http://platform.twitter.com/widgets.js"&gt;&lt;/script&gt;
&lt;/div&gt;
<span style="color: #ff00ff;">&lt;/b:if&gt;</span></pre>
<p>Result:<br />
<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://4.bp.blogspot.com/_-j7_-ccACuU/TGncipjCOiI/AAAAAAAACD0/G5zpcJAhIHg/s1600/Twiiter+Tweet+Buttons-+Vertical+count.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5506174507263605282" style="cursor: pointer; width: 104px; height: 101px;" src="https://4.bp.blogspot.com/_-j7_-ccACuU/TGncipjCOiI/AAAAAAAACD0/G5zpcJAhIHg/Twiiter+Tweet+Buttons-+Vertical+count.png" alt="" border="0" /></a></p>
<p><span style="font-weight: bold; font-family: arial; font-size: 130%;">Code 2 : Horizontal Count</span></p>
<pre style="height: 120px; width: 90%; overflow: auto; border: 1px solid black;"><span style="color: #ff00ff;">&lt;b:if cond='data:blog.pageType == "item"'&gt;</span>
&lt;div style='float:right;margin-right:10px;'&gt;
&lt;a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="TWITTER-USERNAME"&gt;Tweet&lt;/a&gt;&lt;script type="text/javascript" src="http://platform.twitter.com/widgets.js"&gt;&lt;/script&gt;
&lt;/div&gt;
<span style="color: #ff00ff;">&lt;/b:if&gt;</span></pre>
<p>Result:<br />
<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/TGnaFQ1lZ2I/AAAAAAAACDk/mSc3fTQ2ojI/s1600/Twiiter+Tweet+Buttons-+Horizontal+count.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5506171803391059810" style="cursor: pointer; width: 141px; height: 76px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/TGnaFQ1lZ2I/AAAAAAAACDk/mSc3fTQ2ojI/Twiiter+Tweet+Buttons-+Horizontal+count.png" alt="" border="0" /></a></p>
<p><span style="font-weight: bold; font-family: arial; font-size: 130%;">Code 3 : No Count</span></p>
<pre style="height: 120px; width: 90%; overflow: auto; border: 1px solid black;"><span style="color: #ff00ff;">&lt;b:if cond='data:blog.pageType == "item"'&gt;</span>
&lt;div style='float:right;margin-right:10px;'&gt;
&lt;a href="http://twitter.com/share" class="twitter-share-button" data-count="none" data-via="TWITTER-USERNAME"&gt;Tweet&lt;/a&gt;&lt;script type="text/javascript" src="http://platform.twitter.com/widgets.js"&gt;&lt;/script&gt;
&lt;/div&gt;
<span style="color: #ff00ff;">&lt;/b:if&gt;</span></pre>
<p>Result:<br />
<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://4.bp.blogspot.com/_-j7_-ccACuU/TGnaFlUqA1I/AAAAAAAACDs/b7msGOASZt0/s1600/Twiiter+Tweet+Buttons-+No+count.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5506171808890094418" style="cursor: pointer; width: 89px; height: 72px;" src="https://4.bp.blogspot.com/_-j7_-ccACuU/TGnaFlUqA1I/AAAAAAAACDs/b7msGOASZt0/Twiiter+Tweet+Buttons-+No+count.png" alt="" border="0" /></a></p>
<p><span style="font-weight: bold;">Note :</span><br />
Remember to replace "<span style="font-weight: bold; color: #009900; font-size: 130%;">TWITTER-USERNAME</span>" with your real Twitter username.</p>
<p>If you want to show Tweet buttons not only Post pages but also Home page,Archive pages,Label pages,etc... , then remove "<span style="color: #cc33cc;">&lt;b:if cond='data:blog.pageType == "item"'&gt;</span>" and "<span style="color: #cc33cc;">&lt;/b:if&gt;</span>" from above codes.</p>
<p>5.Now save your template.</p>
<p>You can view more info from here:</p>
<p><ins>http://twitter.com/goodies/tweetbutton</ins></p>
<p>Want to build a custom tweet button for your site? Check out developer documentation for the Sharing API to provide the same Tweet Button sharing functionality with your own style :</p>
<p><ins>http://dev.twitter.com/pages/tweet_button</ins></p>
<p>The post <a href="https://www.bloggertipandtrick.net/twitter-official-tweet-buttons-blogger/">How To Add Twitter Official Tweet Buttons to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/twitter-official-tweet-buttons-blogger/feed/</wfw:commentRss>
			<slash:comments>12</slash:comments>
		
		
			</item>
		<item>
		<title>How To Add Blogger Official Share Buttons</title>
		<link>https://www.bloggertipandtrick.net/how-add-blogger-official-share-buttons/</link>
					<comments>https://www.bloggertipandtrick.net/how-add-blogger-official-share-buttons/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Thu, 01 Jul 2010 13:43:00 +0000</pubDate>
				<category><![CDATA[basic]]></category>
		<category><![CDATA[bookmarks]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2010/07/how-to-add-blogger-official-share-buttons.html</guid>

					<description><![CDATA[<p>In this tutorial I will explains, how to add blogger new share buttons to your blogspot blog.This will more helpful if your template is a highly customized blogger template.But your template is a blogger default template, then you can add this share buttons editing the Blog Posts widget and enabling Show Share Buttons in Page [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-add-blogger-official-share-buttons/">How To Add Blogger Official Share Buttons</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In this tutorial I will explains, how to add blogger new share buttons to your blogspot blog.This will more helpful if your template is a highly customized blogger template.But your template is a blogger default template, then you can add this share buttons editing the Blog Posts widget and enabling Show Share Buttons in Page Elements section.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/TCyff39cN6I/AAAAAAAACA8/7BQyEBROXTo/s1600/Blogger+Share+Buttons-22.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5488937415804204962" style="cursor: hand; width: 475px; height: 202px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/TCyff39cN6I/AAAAAAAACA8/7BQyEBROXTo/Blogger+Share+Buttons-22.png" alt="" border="0" /></a></p>
<p>But this method does not work for you,follow the steps given below to add blogger share buttons to your blog.</p>
<blockquote>
<div>
<p>Blogger now offers new share buttons. The new buttons can be placed under each post and let your blog readers easily share your post via email, Blogger, and popular social networks—we now support Google Buzz, Twitter, and Facebook, and we plan to add more services in the future.</p>
<div style="text-align: right;">-From Blogger Buzz</div>
</div>
</blockquote>
<p>1.Login to your blogger dashboard--&gt; layout- -&gt; Edit HTML</p>
<p>2.Click on "<span style="color: #3333ff;">Expand Widget Templates</span>"</p>
<p>3.Scroll down to where you see below code:</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://4.bp.blogspot.com/_-j7_-ccACuU/TCyd1INNH3I/AAAAAAAACA0/1xNIAE_74pM/s1600/Blogger+Share+Buttons-1.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5488935581919289202" style="cursor: hand; width: 129px; height: 44px;" src="https://4.bp.blogspot.com/_-j7_-ccACuU/TCyd1INNH3I/AAAAAAAACA0/1xNIAE_74pM/Blogger+Share+Buttons-1.png" alt="Blogger Share Buttons" border="0" /></a></p>
<p><center></p>
<pre>&lt;div class='post-header-line-1'/&gt;</pre>
<p></center>&nbsp;</p>
<p>4.Now Copy below "Blogger Sharing buttons" code and paste it <span style="font-weight: bold; color: #3333ff;">just below</span> the above code.</p>
<p><span style="font-weight: bold; color: #cc33cc;">NOTE:</span> If you can't find <span style="font-weight: bold;">&lt;div class='post-header-line-1'/&gt;</span> in your template, paste "Blogger Sharing buttons" code <span style="font-weight: bold; color: #3333ff;">just before</span> <span style="font-weight: bold; color: #ff0000;">&lt;data:post.body/&gt;</span> .</p>
<pre style="height: 120px; width: 90%; overflow: auto; border: 1px solid black;"><span style="color: #339966;">&lt;b:if cond='data:blog.pageType == "item"'&gt;</span>
&lt;div class='post-share-buttons' style='float:right;margin-right:10px;'&gt;
&lt;b:include data='post' name='shareButtons'/&gt;
&lt;/div&gt;
<span style="color: #339966;">&lt;/b:if&gt;</span></pre>
<p>This will show blogger sharing buttons below post header.But if you want to show share buttons <span style="text-decoration: underline;">below blogger post</span>,then paste your code <span style="font-weight: bold; color: #3333ff;">just after</span> <span style="font-weight: bold; color: #ff0000;">&lt;data:post.body/&gt;</span>.</p>
<p>5.Now save your template and you are done.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-add-blogger-official-share-buttons/">How To Add Blogger Official Share Buttons</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/how-add-blogger-official-share-buttons/feed/</wfw:commentRss>
			<slash:comments>9</slash:comments>
		
		
			</item>
		<item>
		<title>20 Free Beautiful Social Media Icon Sets Collection</title>
		<link>https://www.bloggertipandtrick.net/free-beautiful-social-media-icon-sets/</link>
					<comments>https://www.bloggertipandtrick.net/free-beautiful-social-media-icon-sets/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 08 Jun 2010 12:34:00 +0000</pubDate>
				<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[image]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2010/06/20-free-beautiful-social-media-icon-sets-collection.html</guid>

					<description><![CDATA[<p>This is my another beautiful high quality social media icon collection for you.I think you will like this social icons very much.You can get these social icons directly from the authors websites.If you want to read my previous social media icon collection read below posts: 23 Free High Quality Social Media Icons Sets Beautiful 3D [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/free-beautiful-social-media-icon-sets/">20 Free Beautiful Social Media Icon Sets Collection</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This is my another beautiful high quality social media icon collection for you.I think you will like this social icons very much.You can get these social icons directly from the authors websites.If you want to read my previous social media icon collection read below posts:</p>
<p><a href="https://www.bloggertipandtrick.net/2010/02/free-high-quality-social-media-icons.html" target="_blank">23 Free High Quality Social Media Icons Sets</a></p>
<p><a href="https://www.bloggertipandtrick.net/2009/10/beautiful-3d-social-bookmark-icons.html" target="_blank">Beautiful 3D Social Bookmark Icons Sets For  Bloggers</a></p>
<p><a href="https://www.bloggertipandtrick.net/2010/03/free-premium-quality-social-icons.html" target="_blank">Free Premium Quality Social Media  Icons Collection</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >65 Bookmarks And Social Icons</span></p>
<p>65 freeware icons of Web 2 Social Bookmarks and Networks for use in blogs, websites, etc...Sizes: 128x128 64x64 32x32 16x16 | 260 Total icons.<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/TA4zeXYMrbI/AAAAAAAAB9c/o-q2WIGBQNo/s1600/65+Bookmarks+And+Social-Icons.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/TA4zeXYMrbI/AAAAAAAAB9c/o-q2WIGBQNo/65+Bookmarks+And+Social-Icons.jpg" alt="" id="BLOGGER_PHOTO_ID_5480374393321074098" border="0" /></a></p>
<p>Download : <a href="http://studiom6.deviantart.com/art/65-Bookmarks-And-Social-Icons-120098825" target="_blank" rel="nofollow">http://studiom6.deviantart.com/art/65-Bookmarks-And-Social-Icons-120098825</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Ultra Glossy Silver Button Social Media Icons</span></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/TA4037jeFwI/AAAAAAAAB_k/BzHCWA2yzfw/s1600/Ultra+Glossy+Silver+Button+Social+Media+Icons1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/TA4037jeFwI/AAAAAAAAB_k/BzHCWA2yzfw/Ultra+Glossy+Silver+Button+Social+Media+Icons1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480375932040386306" border="0" /></a></p>
<p>Download : <a href="http://webtreats.mysitemyway.com/ultra-glossy-silver-button-social-media-icons/" target="_blank" rel="nofollow">http://webtreats.mysitemyway.com/ultra-glossy-silver-button-social-media-icons/</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >108 Glossy Black Comment Bubble Icons</span></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/TA4ze42eD4I/AAAAAAAAB9k/OqZmvHV1Eww/s1600/108+Glossy+Black+Comment+Bubble+Social+Networking-Icons.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/TA4ze42eD4I/AAAAAAAAB9k/OqZmvHV1Eww/108+Glossy+Black+Comment+Bubble+Social+Networking-Icons.jpg" alt="" id="BLOGGER_PHOTO_ID_5480374402306412418" border="0" /></a></p>
<p>Download : <a href="http://webtreats.mysitemyway.com/108-glossy-black-comment-bubble-social-networking-icons/" target="_blank" rel="nofollow">http://webtreats.mysitemyway.com/108-glossy-black-comment-bubble-social-networking-icons/</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >154 Matte Black Social Media Icons</span></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://4.bp.blogspot.com/_-j7_-ccACuU/TA4zfLnrNuI/AAAAAAAAB9s/9BMlBYPpWb8/s1600/154+Matte+Black+Social+Media+Icons1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://4.bp.blogspot.com/_-j7_-ccACuU/TA4zfLnrNuI/AAAAAAAAB9s/9BMlBYPpWb8/154+Matte+Black+Social+Media+Icons1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480374407344633570" border="0" /></a></p>
<p>Download : <a href="http://webtreats.mysitemyway.com/154-matte-black-social-media-icons/" target="_blank" rel="nofollow">http://webtreats.mysitemyway.com/154-matte-black-social-media-icons/</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Social.me</span></p>
<p>Social.me is an icon set consisting of 30 individual icons of the popular social networks/Web 2.0 sites out there.</p>
<p>The icons are iPhone-inspired and is based on the template provided by Tim (www.lostpixel.com) @ MacThemes Forum.Feel free to use these icons anywhere on your website, blog, or even in print.<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://3.bp.blogspot.com/_-j7_-ccACuU/TA403SB1nEI/AAAAAAAAB_c/nqX6jayAvB0/s1600/Social.me.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://3.bp.blogspot.com/_-j7_-ccACuU/TA403SB1nEI/AAAAAAAAB_c/nqX6jayAvB0/Social.me.jpg" alt="" id="BLOGGER_PHOTO_ID_5480375920893467714" border="0" /></a></p>
<p>Download : <a href="http://jwloh.deviantart.com/art/Social-me-90694011" target="_blank" rel="nofollow">http://jwloh.deviantart.com/art/Social-me-90694011</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Black Inlay on Steel Social Media</span></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://3.bp.blogspot.com/_-j7_-ccACuU/TA4zfXtxCfI/AAAAAAAAB90/Axby8OQMJv8/s1600/Black+Inlay+on+Steel+Social+Media1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://3.bp.blogspot.com/_-j7_-ccACuU/TA4zfXtxCfI/AAAAAAAAB90/Axby8OQMJv8/Black+Inlay+on+Steel+Social+Media1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480374410591406578" border="0" /></a></p>
<p>Download : <a href="http://webtreats.mysitemyway.com/iconsetc-black-inlay-on-steel-social-media-icons/" target="_blank" rel="nofollow">http://webtreats.mysitemyway.com/iconsetc-black-inlay-on-steel-social-media-icons/</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Social Media Balloons</span></p>
<p>The icons come in different sizes (from 32px to 128px) and they are in 32-bit transparent PNG format. The set is free for both personal and commercial use (under Creative Commons Licence, attribution is needed). However, resell is not allowed. If you want to integrate them into a website template which is for sale (e.g. WordPress theme, Social bookmark plugin, etc), you need to purchase an extended license.<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://4.bp.blogspot.com/_-j7_-ccACuU/TA40cRLSHSI/AAAAAAAAB_E/5INn5sSzZm0/s1600/Social+Media+Balloons+-+www.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://4.bp.blogspot.com/_-j7_-ccACuU/TA40cRLSHSI/AAAAAAAAB_E/5INn5sSzZm0/Social+Media+Balloons+-+www.jpg" alt="" id="BLOGGER_PHOTO_ID_5480375456808181026" border="0" /></a></p>
<p>Download : <a href="http://www.doublejdesign.co.uk/2010/03/social-media-balloons/" target="_blank" rel="nofollow">http://www.doublejdesign.co.uk/2010/03/social-media-balloons/</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Social Media Balloons 2</span></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://4.bp.blogspot.com/_-j7_-ccACuU/TA40cmvNOSI/AAAAAAAAB_M/d1R9UAZ-Y2s/s1600/Social+Media+Balloons+2+-+www.bloggertipandtrick1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://4.bp.blogspot.com/_-j7_-ccACuU/TA40cmvNOSI/AAAAAAAAB_M/d1R9UAZ-Y2s/Social+Media+Balloons+2+-+www.bloggertipandtrick1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480375462596000034" border="0" /></a></p>
<p>Download : <a href="http://www.doublejdesign.co.uk/2010/04/more-social-media-balloons/" target="_blank" rel="nofollow">http://www.doublejdesign.co.uk/2010/04/more-social-media-balloons/</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Social Jeans</span></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://4.bp.blogspot.com/_-j7_-ccACuU/TA40cGU_42I/AAAAAAAAB-8/GfpO7dpKHkI/s1600/Social+Jeans1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://4.bp.blogspot.com/_-j7_-ccACuU/TA40cGU_42I/AAAAAAAAB-8/GfpO7dpKHkI/Social+Jeans1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480375453896139618" border="0" /></a></p>
<p>Download : <a href="http://nishad2m8.deviantart.com/art/jeans-social-media-icon-pack-131069708" target="_blank" rel="nofollow">http://nishad2m8.deviantart.com/art/jeans-social-media-icon-pack-131069708</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Simple Glossy Silver Social Media Icons</span></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/TA40a-mOjaI/AAAAAAAAB-s/uPvlrxchVes/s1600/Simple+Glossy+Silver+Social+Media+Icons1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/TA40a-mOjaI/AAAAAAAAB-s/uPvlrxchVes/Simple+Glossy+Silver+Social+Media+Icons1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480375434641051042" border="0" /></a></p>
<p>Download : <a href="http://webtreats.mysitemyway.com/simple-glossy-silver-social-media-icons/" target="_blank" rel="nofollow">http://webtreats.mysitemyway.com/simple-glossy-silver-social-media-icons/</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Social 2 Duo</span><span style="font-weight: bold;font-size:180%;" ><br /></span><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/TA40bg1vmnI/AAAAAAAAB-0/L2gryKkdn00/s1600/Social+2+Duo1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/TA40bg1vmnI/AAAAAAAAB-0/L2gryKkdn00/Social+2+Duo1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480375443832937074" border="0" /></a></p>
<p>Download : <a href="http://iconblock.com/goodies/icons/" target="_blank" rel="nofollow">http://iconblock.com/goodies/icons/</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >OLED Social Icons</span></p>
<p>Contents:21 icons<br />- 256x256px,- 128x128px,- 96x96px,- 64x64px,- 48x48px,- 32x32px,- 16x16px21<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://3.bp.blogspot.com/_-j7_-ccACuU/TA4z4Nsa34I/AAAAAAAAB-k/LvQGhcghzSw/s1600/OLED+Social+Icons1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://3.bp.blogspot.com/_-j7_-ccACuU/TA4z4Nsa34I/AAAAAAAAB-k/LvQGhcghzSw/OLED+Social+Icons1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480374837398134658" border="0" /></a></p>
<p>Download : <a href="http://arrioch.deviantart.com/art/OLED-social-icons-151238966" target="_blank" rel="nofollow">http://arrioch.deviantart.com/art/OLED-social-icons-151238966</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Furry Cushions Social Icons</span></p>
<p>You can use the set for all of your projects for free and without any restrictions. You can freely use it for both your private and commercial projects, including software, online services, templates and themes. The set may not be resold, sublicensed, rented, transferred or otherwise made available for use. Please link to this article if you would like to spread the word.<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/TA4z3BPVXNI/AAAAAAAAB-M/qxtlRml814A/s1600/Furry+Cushions+Social+Icons1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/TA4z3BPVXNI/AAAAAAAAB-M/qxtlRml814A/Furry+Cushions+Social+Icons1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480374816875044050" border="0" /></a></p>
<p>Download : <a href="http://www.cutelittlefactory.com/freebies/furry-cushions-social-icons/" target="_blank" rel="nofollow">http://www.cutelittlefactory.com/freebies/furry-cushions-social-icons/</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Free Social Media Icon Set Chrome</span></p>
<p>This set includes 19 social networks along with a standard RSS icon in PNG format.<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://3.bp.blogspot.com/_-j7_-ccACuU/TA4z2qpk8TI/AAAAAAAAB-E/sqvrDyD6jrQ/s1600/Free+Social+Media+Icon+Set+Chrome1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://3.bp.blogspot.com/_-j7_-ccACuU/TA4z2qpk8TI/AAAAAAAAB-E/sqvrDyD6jrQ/Free+Social+Media+Icon+Set+Chrome1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480374810811101490" border="0" /></a></p>
<p>Download : <a href="http://www.chris-wallace.com/2009/05/28/free-social-media-icons-socialize/" target="_blank" rel="nofollow">http://www.chris-wallace.com/2009/05/28/free-social-media-icons-socialize/</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Wooden Social Media Icons</span></p>
<p>This is a set of free Social Bookmarking icons which is in Wooden style. Icons are in editable PSD and PNG formats so they can be customized as per your requirement.<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/TA404IkhcKI/AAAAAAAAB_s/P8wKlcZJpV4/s1600/Wooden+Social+Media+Icons1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/TA404IkhcKI/AAAAAAAAB_s/P8wKlcZJpV4/Wooden+Social+Media+Icons1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480375935534461090" border="0" /></a></p>
<p>Download : <a href="http://annanta.com/archive/wooden-social-media-icons/" target="_blank" rel="nofollow">http://annanta.com/archive/wooden-social-media-icons/</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Free 3D Social</span></p>
<p>Free 3D Social Icons are a free icon collection ideal for Web sites and applications associated with all sorts of social networks. The pack delivers images depicting various communication technologies and Web sites.</p>
<p>The icons from the pack come in sizes of 16x16, 20x20, 24x24, 32x32, 48x48, 64x64, and 128x128 pixels, as well as in specially created, extra large sizes of 256x256 and 512x512 pixels. The icons are available in True Color with semi-transparency format. They are delivered in all of the following formats: ICO, PNG, GIF and BMP. Source files in 3D-Max format are also available.</p>
<p>This fabulous icon pack is available for instant free download!<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://4.bp.blogspot.com/_-j7_-ccACuU/TA4zf_hk73I/AAAAAAAAB98/9PriIceZmLU/s1600/Free+3D+Social+Icons+-+www.bloggertipandtrick1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://4.bp.blogspot.com/_-j7_-ccACuU/TA4zf_hk73I/AAAAAAAAB98/9PriIceZmLU/Free+3D+Social+Icons+-+www.bloggertipandtrick1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480374421277699954" border="0" /></a></p>
<p>Download : <a href="http://www.large-icons.com/stock-icons/free-3d-social-icons.htm" target="_blank" rel="nofollow">http://www.large-icons.com/stock-icons/free-3d-social-icons.htm</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Grunge Social</span></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://3.bp.blogspot.com/_-j7_-ccACuU/TA4z3fLZfeI/AAAAAAAAB-U/aCTiK6wGHpo/s1600/Grunge+Social+icons1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://3.bp.blogspot.com/_-j7_-ccACuU/TA4z3fLZfeI/AAAAAAAAB-U/aCTiK6wGHpo/Grunge+Social+icons1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480374824911601122" border="0" /></a></p>
<p>Download : <a href="http://www.box.net/shared/hxycdc1m8z" target="_blank" rel="nofollow">http://www.box.net/shared/hxycdc1m8z</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Large Delicious Icons</span></p>
<p>Large Delicious Icons are a free icon collection ideal for Personal blogs and Web-pages. This set pictures the well-known Delicious symbol in lots of fresh and attractive variations.</p>
<p>The icons from the pack come in sizes of 16x16, 24x24, 32x32, 48x48 and 128x128 pixels, as well as in specially created, extra large sizes of 256x256 and 512x512 pixels. The icons are available in True Color with semi-transparency format. They are delivered in all of the following formats: ICO, PNG, GIF and BMP.</p>
<p>This fabulous icon pack is available for instant free download!<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/TA4z3v0XQRI/AAAAAAAAB-c/cHeYOZw0gBY/s1600/Large+Delicious+Icons.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/TA4z3v0XQRI/AAAAAAAAB-c/cHeYOZw0gBY/Large+Delicious+Icons.jpg" alt="" id="BLOGGER_PHOTO_ID_5480374829378388242" border="0" /></a></p>
<p>Download : <a href="http://www.large-icons.com/stock-icons/large-delicious-icons.htm" target="_blank" rel="nofollow">http://www.large-icons.com/stock-icons/large-delicious-icons.htm</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Social Media Price Tag</span></p>
<p>The source file (PSD) is included, as well as two sizes of PNGs (250×150 px &amp; 125×75 px). You can use these icons for personal and commercial projects at free of charge.<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://1.bp.blogspot.com/_-j7_-ccACuU/TA403DloFII/AAAAAAAAB_U/g7rSZ9oNLQE/s1600/Social+Media+Price+Tag1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://1.bp.blogspot.com/_-j7_-ccACuU/TA403DloFII/AAAAAAAAB_U/g7rSZ9oNLQE/Social+Media+Price+Tag1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480375917017044098" border="0" /></a></p>
<p>Download : <a href="http://deepubalan.com/blog/2009/12/14/high-resolution-social-media-iconset-for-free-price-tag-style/" target="_blank" rel="nofollow">http://deepubalan.com/blog/2009/12/14/high-resolution-social-media-iconset-for-free-price-tag-style/</a></p>
<p><span style="font-weight: bold;font-size:180%;" class="redcode" >Woodgrain A Free Social Media Icon Set</span></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/TA404kH7LwI/AAAAAAAAB_0/IXYIjwKbk-Y/s1600/Woodgrain+A+Free+Social+Media+Icon+Set1.jpg"><img decoding="async" style="cursor: pointer; width: 500px; height: 250px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/TA404kH7LwI/AAAAAAAAB_0/IXYIjwKbk-Y/Woodgrain+A+Free+Social+Media+Icon+Set1.jpg" alt="" id="BLOGGER_PHOTO_ID_5480375942930706178" border="0" /></a></p>
<p>Download : <a href="http://www.chris-wallace.com/2009/06/30/woodgrain-a-free-social-media-iconset/" target="_blank" rel="nofollow">http://www.chris-wallace.com/2009/06/30/woodgrain-a-free-social-media-iconset/</a></p>
<p>The post <a href="https://www.bloggertipandtrick.net/free-beautiful-social-media-icon-sets/">20 Free Beautiful Social Media Icon Sets Collection</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/free-beautiful-social-media-icon-sets/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
	</channel>
</rss>
