<?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/twitter/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Blogger Tips And Tricks&#124;Latest Tips For Bloggers</description>
	<lastBuildDate>Tue, 19 Aug 2025 05:27:07 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to Add Official X (Twitter) Follow Button to Blogger</title>
		<link>https://www.bloggertipandtrick.net/official-x-twitter-follow-button-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/official-x-twitter-follow-button-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 19 Aug 2025 05:14:00 +0000</pubDate>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[twitter]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2011/06/how-to-add-official-twitter-follow-button-to-blogger.html</guid>

					<description><![CDATA[<p>Adding an official X (Twitter) Follow Button to your Blogger site is a quick way to let visitors follow you with one click. It helps you grow your followers and stay connected with your audience. In this guide I will show you how to add the button directly to your blog. Copy and Paste This [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/official-x-twitter-follow-button-blogger/">How to Add Official X (Twitter) Follow Button 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><img fetchpriority="high" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Add-Official-X-Twitter-Follow-Button-to-Blogger.jpg" alt="How to Add Official X (Twitter) Follow Button to Blogger" width="1536" height="806" class="singular-featured-image alignnone size-full wp-image-7400" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Add-Official-X-Twitter-Follow-Button-to-Blogger.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Add-Official-X-Twitter-Follow-Button-to-Blogger-768x403.jpg 768w" sizes="(max-width: 1536px) 100vw, 1536px" /></p>
<p>Adding an official <strong>X (Twitter) Follow Button</strong> to your Blogger site is a quick way to let visitors follow you with one click. It helps you grow your followers and stay connected with your audience. In this guide I will show you how to add the button directly to your blog.</p>
<hr />
<h2>Copy and Paste This Code</h2>
<p>Here is the code you need. Replace <span style="color:#0cb30c;font-weight:bold;">YourHandle</span> with your actual X/Twitter username (without the @ sign).</p>
<pre><code>&lt;a href="https://twitter.com/YourHandle"
   class="twitter-follow-button"
   data-show-screen-name="true"
   data-show-count="false"
   data-size="large"&gt;
  Follow @YourHandle
&lt;/a&gt;
&lt;script async src="https://platform.twitter.com/widgets.js" charset="utf-8"&gt;&lt;/script&gt;</code></pre>
<p><em>Tip:</em> You only need the script line once per page. If your template already has it, you can remove the last line.</p>
<p style="background:#f7f7f7; padding:12px; border-left:4px solid #0cb30c;">
  <strong>Note:</strong> This follow button code is not limited to Blogger. You can also use the same code on any other website, such as WordPress, static HTML pages, or custom CMS platforms. Just paste it into your site’s HTML and it will work the same way.
</p>
<hr />
<h2>Method A: Add the Button with a Gadget</h2>
<ol>
<li>Log in to Blogger and go to <strong>Layout</strong>.</li>
<li>Click <strong>Add a Gadget → HTML/JavaScript</strong>.</li>
<li>Paste the code shown above.</li>
<li>Click <strong>Save</strong>.</li>
</ol>
<p>The button will now appear in the sidebar, footer or any gadget area you choose.</p>
<hr />
<h2>Method B: Add the Button in Your Theme</h2>
<p><strong>Important:</strong> Make a backup of your theme first (Theme → Backup). Blogger templates can be different, so check carefully before editing.</p>
<ol>
<li>Go to <strong>Theme → Edit HTML</strong>.</li>
<li>Search for <span style="color:#0cb30c;font-weight:bold;">&lt;b:includable id='post' var='post'&gt;</span>. Inside this block you will see <span style="color:#ff00ff;font-weight:bold;">&lt;data:post.body/&gt;</span>.</li>
<li>Paste the same follow button code <strong>just before</strong> <span style="color:#ff00ff;font-weight:bold;">&lt;data:post.body/&gt;</span>.</li>
</ol>
<p>This will make the button appear at the top of every blog post.</p>
<p>If you want the button to be aligned to the right, wrap it with a simple <span style="color:#0cb30c;font-weight:bold;">&lt;div&gt;</span> like this:</p>
<pre><code>&lt;div style="float:right; margin:6px 0 10px 10px;"&gt;
  &lt;!-- Follow button code goes here --&gt;
&lt;/div&gt;</code></pre>
<hr />
<h2>Customize the Button</h2>
<ul>
<li><strong>Show or hide username:</strong> Change <span style="color:#0cb30c;font-weight:bold;">data-show-screen-name</span> to <span style="color:#ff00ff;font-weight:bold;">true</span> or <span style="color:#ff00ff;font-weight:bold;">false</span>.</li>
<li><strong>Show or hide follower count:</strong> Change <span style="color:#0cb30c;font-weight:bold;">data-show-count</span> to <span style="color:#ff00ff;font-weight:bold;">true</span> or <span style="color:#ff00ff;font-weight:bold;">false</span>.</li>
<li><strong>Button size:</strong> Add <span style="color:#0cb30c;font-weight:bold;">data-size="large"</span> for a bigger button or remove it for the default size.</li>
<li><strong>Position:</strong> Use a wrapper <span style="color:#0cb30c;font-weight:bold;">&lt;div&gt;</span> and add CSS such as <span style="color:#ff00ff;font-weight:bold;">float:right;</span> or <span style="color:#ff00ff;font-weight:bold;">margin</span>.</li>
</ul>
<hr />
<h2>Fixing Common Problems</h2>
<ul>
<li><strong>Button shows only as a link:</strong> Make sure the script line is included once per page: <span style="color:#0cb30c;font-weight:bold;">&lt;script async src="https://platform.twitter.com/widgets.js"&gt;&lt;/script&gt;</span></li>
<li><strong>Button does not appear in posts:</strong> Check that you pasted the code inside <span style="color:#0cb30c;font-weight:bold;">&lt;b:includable id='post' var='post'&gt;</span> and before <span style="color:#ff00ff;font-weight:bold;">&lt;data:post.body/&gt;</span>.</li>
<li><strong>Button loads twice:</strong> Remove extra copies of the script so only one remains.</li>
<li><strong>Wrong account:</strong> Double check that you replaced <span style="color:#0cb30c;font-weight:bold;">YourHandle</span> with your own username.</li>
</ul>
<hr />
<p>That’s it. Now your Blogger site has a working <strong>X (Twitter) Follow Button</strong> and visitors can follow you instantly. Happy blogging!</p>
<p>The post <a href="https://www.bloggertipandtrick.net/official-x-twitter-follow-button-blogger/">How to Add Official X (Twitter) Follow Button 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/official-x-twitter-follow-button-blogger/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<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 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 Beautiful Subscribe Widget to Blogger</title>
		<link>https://www.bloggertipandtrick.net/beautiful-subscribe-section-to-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/beautiful-subscribe-section-to-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Fri, 30 Oct 2015 03:20:00 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2010/02/how-to-add-beautiful-subscribe-section-to-blogger.html</guid>

					<description><![CDATA[<p>Do you like to add a good looking social subscribe widget to your blog? Then simply follow the steps given below. 1.Login to your blogger account and go to "Edit HTML". 2.Scroll down to where you see &#60;/head&#62; tag . 3.Copy below code and paste it just before the &#60;/head&#62; tag. &#60;style type='text/css'&#62; @import url(https://fonts.googleapis.com/css?family=Lora:400,700); [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/beautiful-subscribe-section-to-blogger/">How To Add Beautiful Subscribe Widget 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 like to add a good looking social subscribe widget to your blog? Then simply follow the steps given below.</p>
<p>1.Login to your blogger account and go to "Edit HTML".</p>
<p>2.Scroll down to where you see <span style="font-weight: bold; color: #ff0000;">&lt;/head&gt;</span> tag .</p>
<p>3.Copy below code and paste it <span style="color: #3333ff;">just before</span> the <span style="color: #ff0000;">&lt;/head&gt;</span> tag.</p>
<pre style="border: 1px solid black; overflow: auto; width: 95%;">&lt;style type='text/css'&gt;
@import url(https://fonts.googleapis.com/css?family=Lora:400,700);

#subscribe-btt {
    margin: 0;
    padding: 10px;
    background: #eee;
    border: 3px solid #e8e8e8;
}

#subscribe-btt:hover {
    background: #e9e9e9;
    border: 3px solid #ddd;
}

#subscribe-btt h2.mysocialurl {
    border: 0;
    margin: 0 0 8px 0;
    padding: 0 0 0 56px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    font-family: Lora;
}

#subscribe-btt h2.my-twitter {
    background: url(http://1.bp.blogspot.com/-YMZoxe6YeAU/VjLfx48cbzI/AAAAAAAANS4/-xMF6d-h6pI/s1600/twitter.png) no-repeat top left;
}

#subscribe-btt h2.my-facebook {
    background: url(http://3.bp.blogspot.com/-x3I2mVz4dz0/VjLfvv-E4lI/AAAAAAAANSU/mtI8MA00knA/s1600/facebook.png) no-repeat top left;
}

#subscribe-btt h2.my-googleplus {
    background: url(http://4.bp.blogspot.com/-ZgHjLWTv3hg/VjLfvhnsveI/AAAAAAAANSY/d-so__lf_MU/s1600/google_plus.png) no-repeat top left;
}

#subscribe-btt h2.my-pinterest {
    background: url(http://3.bp.blogspot.com/-QsPPcMl7rrw/VjLfxLofDUI/AAAAAAAANSs/1v1y-fB5pEQ/s1600/pinterest.png) no-repeat top left;
}

#subscribe-btt h2.my-instagram {
    background: url(http://2.bp.blogspot.com/-y1lyKz1gpew/VjLfviE7bHI/AAAAAAAANSk/bK4YGPwJfpI/s1600/instagram.png) no-repeat top left;
}

#subscribe-btt h2.my-linkedin {
    background: url(http://3.bp.blogspot.com/-g8Svw7M45HQ/VjLfwfBFNEI/AAAAAAAANSc/6kG75VOZyiM/s1600/linkedin.png) no-repeat top left;
}

#subscribe-btt h2.my-youtube {
    background: url(http://2.bp.blogspot.com/-B2Mt0Xr7s1Q/VjLfx4_kfqI/AAAAAAAANS8/5xcxmsRniRc/s1600/youtube.png) no-repeat top left;
}

#subscribe-btt h2.my-rss {
    background: url(http://2.bp.blogspot.com/-OTpOGowrvfg/VjLfxSHIbhI/AAAAAAAANS0/VnHf1jK_WLk/s1600/rss.png) no-repeat top left;
}

#subscribe-btt h2.my-email {
    background: url(http://1.bp.blogspot.com/-F3CIjKLAcrU/VjLfw_yOCdI/AAAAAAAANSo/vqPj9oNwe6c/s1600/mail.png) no-repeat top left;
}

#subscribe-btt .mysocialurl a {
    color: #252e28;
    text-decoration: none;
}

#subscribe-btt .mysocialurl a:hover {
    color: #000000;
    text-decoration: underline;
}
&lt;/style&gt;</pre>
<p>4.Now go to "Layout" and click on "Add a Gadget".</p>
<p>5.Select "HTML/JavaScript" and add the code given below and click "Save".</p>
<pre style="border: 1px solid black; overflow: auto; width: 95%;">&lt;div id="subscribe-btt"&gt;

&lt;h2 class="mysocialurl my-twitter"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-TWITTER-URL</strong></span>"&gt;<span style="color: #339966;"><strong>FOLLOW ME ON TWITTER</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-facebook"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-FACEBOOK-URL</strong></span>"&gt;<span style="color: #339966;"><strong>FOLLOW ME ON FACEBOOK</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-googleplus"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-GOOGLE-PLUS-URL</strong></span>"&gt;<span style="color: #339966;"><strong>FOLLOW ME ON GOOGLE PLUS</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-pinterest"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-PINTEREST-URL</strong></span>"&gt;<span style="color: #339966;"><strong>FOLLOW ME ON PINTEREST</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-instagram"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-INSTAGRAM-URL</strong></span>"&gt;<span style="color: #339966;"><strong>FOLLOW ME ON INSTAGRAM</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-linkedin"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-LINKEDIN-URL</strong></span>"&gt;<span style="color: #339966;"><strong>FOLLOW ME ON LINKEDIN</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-youtube"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-YOUTUBE-URL</strong></span>"&gt;<span style="color: #339966;"><strong>FOLLOW ME ON YOUTUBE</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-rss"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-RSS-FEED-URL</strong></span>"&gt;<span style="color: #339966;"><strong>SUBSCRIBE VIA RSS</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-email"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-FEEDBURNER-EMAIL-SUBSCRIPTION-URL</strong></span>"&gt;<span style="color: #339966;"><strong>SUBSCRIBE VIA EMAIL</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;/div&gt;</pre>
<p><span style="font-weight: bold;">NOTE</span> : In above code, replace pink colored codes with your social profile URLs.</p>
<p>Final result will look like this:</p>
<p><img decoding="async" class="alignnone size-full wp-image-5540" src="https://www.bloggertipandtrick.net/wp-content/uploads/2010/02/Social-Subscribe-Box-to-Blogger.png" alt="Social Subscribe Box to Blogger" width="424" height="545" /></p>
<p>The post <a href="https://www.bloggertipandtrick.net/beautiful-subscribe-section-to-blogger/">How To Add Beautiful Subscribe Widget 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/beautiful-subscribe-section-to-blogger/feed/</wfw:commentRss>
			<slash:comments>24</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 loading="lazy" 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 loading="lazy" 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 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 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 Display Recent Twitter Tweets Using JQuery</title>
		<link>https://www.bloggertipandtrick.net/display-recent-twitter-tweets-jquery/</link>
					<comments>https://www.bloggertipandtrick.net/display-recent-twitter-tweets-jquery/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Wed, 11 Aug 2010 02:52:00 +0000</pubDate>
				<category><![CDATA[twitter]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2010/08/how-to-display-recent-twitter-tweets-using-jquery.html</guid>

					<description><![CDATA[<p>Do you want to show your recent tweets inside your website or blogger blog?Then,this tutorial will helpful for you, to add recent tweets into your website using Jquery.Your recent tweets will load fast using jquery and also you can change number of tweets must display very easily.If you want you can read advanced details about [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/display-recent-twitter-tweets-jquery/">How To Display Recent Twitter Tweets Using JQuery</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 show your recent tweets inside your website or blogger blog?Then,this tutorial will helpful for you, to add recent tweets into your website using Jquery.Your recent tweets will load fast using jquery and also you can change number of tweets must display very easily.If you want you can read advanced details about tutorial from here: http://www.thewebsqueeze.com/web-design-tutorials/displaying-your-tweets-on-your-website-with-jquery.html</p>
<blockquote>
<div>Twitter is a social networking and microblogging service, owned and operated by Twitter Inc., that enables its users to send and read other user messages called tweets. Tweets are text-based posts of up to 140 characters displayed on the author's profile page.</div>
</blockquote>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://1.bp.blogspot.com/_-j7_-ccACuU/TGIVB9dNhOI/AAAAAAAACCc/bXKHPpVOZrc/s1600/JQuery+Recent+Tweets11.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5503984818021303522" style="cursor: pointer; width: 575px; height: 199px;" src="https://1.bp.blogspot.com/_-j7_-ccACuU/TGIVB9dNhOI/AAAAAAAACCc/bXKHPpVOZrc/JQuery+Recent+Tweets11.png" alt="" border="0" /></a></p>
<p>Now follow the steps given below to add this recent tweets widget to your website or blog.</p>
<p>1.Login to your blogger dashboard--&gt; Design - -&gt; Edit HTML.</p>
<p>2.Scroll down to where you see <span style="font-weight: bold; color: #ff0000;">&lt;/head&gt;</span> tag .</p>
<p>3.Copy below code and paste it <span style="color: #3333ff;">just before</span> the <span style="color: #ff0000;">&lt;/head&gt;</span> tag .</p>
<pre style="height: 400px; width: 90%; overflow: auto; border: 1px solid black;">&lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"&gt;&lt;/script&gt;

&lt;script type="text/javascript" charset="utf-8"&gt;

function showTweets(elem, username, number)
{
var html = '&lt;ul&gt;';

var tweetFeed = 'http://twitter.com/status/user_timeline/' + username + '.json?count=' + number + '&amp;callback=?'
$.getJSON(tweetFeed, function(d)
{

$.each(d, function(i,item)
{
html+='&lt;li&gt;'+item.text+'&lt;/li&gt;';
})
html+="&lt;/ul&gt;";

elem.children().fadeOut('fast',function() {
elem.append(html);
})
})
}

$(function() {
$('#error').remove();
$('#preload').show();
showTweets($('#tweets'), '<span style="color: #ff0000;"><strong>btipandtrick</strong></span>', <span style="color: #008000;"><strong>5</strong></span>)
});

&lt;/script&gt;

&lt;style type="text/css"&gt;
#preload {display: none;}

#tweets ul li{
list-style-type:square;
list-style-position:inside;
list-style-image:url('http://4.bp.blogspot.com/_HJvXUqHmf9Y/TGISCT-W4yI/AAAAAAAAABI/VdnChTmVqUs/s1600/twitter.png');
margin:0 0 0;
padding:0 0 0;
}
&lt;/style&gt;</pre>
<p><span style="font-weight: bold; font-size: 130%;">NOTE :</span><br />
<span style="font-weight: bold; color: #ff0000; font-size: 130%;">btipandtrick</span> : Replace this with <span style="text-decoration: underline;">your twitter username</span>.</p>
<p><span style="font-weight: bold; color: #009900; font-size: 130%;">5</span> : <span style="text-decoration: underline;">Number of tweets</span> must appear.</p>
<p>4.Now save your template.</p>
<p>5.Go to Layout --&gt; Page Elements.</p>
<p>6.Click on 'Add a Gadget'.</p>
<p>7.Select 'HTML/Javascript' and add the code given below:</p>
<pre style="height: 150px; width: 90%; overflow: auto; border: 1px solid black;">&lt;div style="font-size:12px;font-family:Arial;"&gt;
&lt;div id="tweets"&gt;
&lt;h3 id="error"&gt;There was a problem fetching tweets&lt;/h3&gt;
&lt;h3 id="preload"&gt;Currently loading your tweets...&lt;/h3&gt;
&lt;/div&gt;
&lt;ul&gt;&lt;li style="list-style-type:none;"&gt;&lt;a href="http://www.twitter.com/<span style="color: #ff0000;"><strong>btipandtrick</strong></span>"&gt;Follow me on twitter&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;</pre>
<p>You are done.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/display-recent-twitter-tweets-jquery/">How To Display Recent Twitter Tweets Using JQuery</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/display-recent-twitter-tweets-jquery/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Twitter Followers Counters For Blogger/Websites</title>
		<link>https://www.bloggertipandtrick.net/twitter-followers-counters/</link>
					<comments>https://www.bloggertipandtrick.net/twitter-followers-counters/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Mon, 04 Jan 2010 09:23:00 +0000</pubDate>
				<category><![CDATA[button]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[twitter]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2010/01/twitter-followers-counters-for-bloggerwebsites.html</guid>

					<description><![CDATA[<p>To show your site visitors to how many people follow you on twitter use the one of below code: 1.Login to your blogger dashboard--&#62;Layout &#62; Page Elements 2.Click on 'Add a Gadget'. 3.Select 'HTML/Javascript' and add the one of code given below and click save. 1.Big Twitter followers counter button: &#60;script type="text/javascript" language="javascript" src="http://twittercounter.com/embed/?username=YOUR-TWITTER-USERNAME&#38;style=bird"&#62;&#60;/script&#62; 2.White [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/twitter-followers-counters/">Twitter Followers Counters For Blogger/Websites</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>To show your site visitors to how many people follow you on twitter use the one of below code:</p>
<p>1.Login to your blogger dashboard--&gt;Layout &gt; Page Elements</p>
<p>2.Click on 'Add a Gadget'.</p>
<p>3.Select 'HTML/Javascript' and add the one of code given below and click save.</p>
<p>1.Big Twitter followers counter button:</p>
<p><a title="twitter follower counters for blogs-websites" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://4.bp.blogspot.com/_-j7_-ccACuU/S0GxnVz3EmI/AAAAAAAABZE/IhLemW5ANzY/s1600-h/twitter+follower+counters+for+blogs-websites.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5422810715758465634" style="cursor: pointer; width: 164px; height: 111px;" src="https://4.bp.blogspot.com/_-j7_-ccACuU/S0GxnVz3EmI/AAAAAAAABZE/IhLemW5ANzY/twitter+follower+counters+for+blogs-websites.png" alt="twitter follower counters for blogs-websites" border="0" /></a></p>
<pre style="border: 1px solid black; overflow: auto; height: 50px; width: 90%;">&lt;script type="text/javascript" language="javascript" src="http://twittercounter.com/embed/?username=<span style="color: #ff0000;"><strong>YOUR-TWITTER-USERNAME</strong></span>&amp;style=bird"&gt;&lt;/script&gt;</pre>
<p>2.White Twitter followers counter button:</p>
<p><a title="twitter follower counters white button" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://1.bp.blogspot.com/_-j7_-ccACuU/S0Gx4I2lCnI/AAAAAAAABZM/TC5cB50EVuU/s1600-h/twitter+follower+counters+white+button.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5422811004337982066" style="cursor: pointer; width: 105px; height: 45px;" src="https://1.bp.blogspot.com/_-j7_-ccACuU/S0Gx4I2lCnI/AAAAAAAABZM/TC5cB50EVuU/twitter+follower+counters+white+button.png" alt="twitter follower counters white button" border="0" /></a></p>
<pre style="border: 1px solid black; overflow: auto; height: 50px; width: 90%;">&lt;script type="text/javascript" language="javascript" src="http://twittercounter.com/embed/?username=<span style="font-weight: bold; color: #ff0000; font-size: 130%;">YOUR-TWITTER-USERNAME</span>"&gt;&lt;/script&gt;</pre>
<p>3.Black Twitter followers counter button:</p>
<p><a title="twitter followers counter black button" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/S0GyJinYhEI/AAAAAAAABZU/fa9F6QI_Crs/s1600-h/twitter+followers+counter+black+button.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5422811303311344706" style="cursor: pointer; width: 105px; height: 42px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/S0GyJinYhEI/AAAAAAAABZU/fa9F6QI_Crs/twitter+followers+counter+black+button.png" alt="twitter followers counter black button" border="0" /></a></p>
<pre style="border: 1px solid black; overflow: auto; height: 50px; width: 90%;">&lt;script type="text/javascript" language="javascript" src="http://twittercounter.com/embed/?username=<span style="font-weight: bold; color: #ff0000; font-size: 130%;">YOUR-TWITTER-USERNAME</span>&amp;style=black"&gt;&lt;/script&gt;</pre>
<p>4.Show your Twitter followers in <span style="font-weight: bold; color: #cc33cc;">Text</span>:</p>
<p><a title="twitter followers counter text" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://3.bp.blogspot.com/_-j7_-ccACuU/S0GyVdPei_I/AAAAAAAABZc/7-1s3TqMWh4/s1600-h/twitter+followers+counter+text.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5422811508027329522" style="cursor: pointer; width: 47px; height: 49px;" src="https://3.bp.blogspot.com/_-j7_-ccACuU/S0GyVdPei_I/AAAAAAAABZc/7-1s3TqMWh4/twitter+followers+counter+text.png" alt="twitter followers counter text" border="0" /></a></p>
<pre style="border: 1px solid black; overflow: auto; height: 50px; width: 90%;">&lt;script type="text/javascript" language="javascript" src="http://twittercounter.com/widget/index.php?username=<span style="font-weight: bold; color: #ff0000; font-size: 130%;">YOUR-TWITTER-USERNAME</span>"&gt;&lt;/script&gt;</pre>
<p>The post <a href="https://www.bloggertipandtrick.net/twitter-followers-counters/">Twitter Followers Counters For Blogger/Websites</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-followers-counters/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>How To Add Topsy Retweet Counter Buttons For Blogger</title>
		<link>https://www.bloggertipandtrick.net/topsy-retweet-counter-buttons-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/topsy-retweet-counter-buttons-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Thu, 31 Dec 2009 08:53:00 +0000</pubDate>
				<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[twitter]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/12/how-to-add-topsy-retweet-counter-buttons-for-blogger.html</guid>

					<description><![CDATA[<p>This tutorial explains to you how to add Topsy Retweet Counter Buttons in below header of your every blog post.There are 2 sizes of this Topsy Retweet Counter Button.You can add any button you like.Follow the steps below to do it: 1.Log in to your dashboard--> layout- -> Edit HTML 2.Click on "Expand Widget Templates" [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/topsy-retweet-counter-buttons-blogger/">How To Add Topsy Retweet Counter Buttons For 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 tutorial explains to you how to add Topsy Retweet Counter Buttons in <span style="color: rgb(51, 51, 255);">below header</span> of your every blog post.There are <span style="font-weight: bold; color: rgb(255, 0, 0);">2 sizes</span> of this Topsy Retweet Counter Button.You can add any button you like.Follow the steps below to do it:</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://1.bp.blogspot.com/_-j7_-ccACuU/SzxitV0ZmLI/AAAAAAAABYk/w8jjr5ECG9M/s1600-h/Topsy+Retweet+Counter+Buttons+For+Blogger-Websites.png" title="Topsy Retweet Counter Buttons For Blogger/Websites"><img decoding="async" style="cursor: pointer; width: 228px; height: 107px;" src="https://1.bp.blogspot.com/_-j7_-ccACuU/SzxitV0ZmLI/AAAAAAAABYk/w8jjr5ECG9M/Topsy+Retweet+Counter+Buttons+For+Blogger-Websites.png" alt="Topsy Retweet Counter Buttons For Blogger/Websites" id="BLOGGER_PHOTO_ID_5421316582537795762" border="0" /></a></p>
<p>1.Log in to your dashboard--> layout- -> 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 this:</p>
<pre style="border: 0px solid black; overflow: auto; height: 50px; width: 90%; font-weight: bold; color: rgb(204, 51, 204);"><center><span style="font-size:130%;">&lt;div class='post-header-line-1'/&gt;</span></center></pre>
<p>4.Now copy below code and paste it <span style="color: rgb(51, 51, 255);">just after</span> the <span style="color: rgb(255, 0, 0);">above line</span>.</p>
<p><span style="font-weight: bold; color: rgb(0, 0, 0);font-size:130%;" >For Large Button:</span></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/SzxjBVYqs-I/AAAAAAAABYs/gB8Nuj4Adv0/s1600-h/Topsy+Big+Retweet+Counter+Buttons+For+Blogger.png" title="Topsy Big Retweet Counter Buttons For Blogger"><img decoding="async" style="cursor: pointer; width: 121px; height: 107px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/SzxjBVYqs-I/AAAAAAAABYs/gB8Nuj4Adv0/Topsy+Big+Retweet+Counter+Buttons+For+Blogger.png" alt="Topsy Big Retweet Counter Buttons For Blogger" id="BLOGGER_PHOTO_ID_5421316926018860002" border="0" /></a></p>
<pre style="border: 1px solid black; overflow: auto; height: 80px; width: 90%;">&lt;div style='padding: <span style="font-weight: bold; color: rgb(255, 102, 0);">4</span>px; float: <span style="font-weight: bold; color: rgb(204, 51, 204);">right</span>;'&gt;<br />&lt;script src='http://button.topsy.com/widget/retweet-big?nick=<span style="font-weight: bold; color: rgb(255, 0, 0);font-size:130%;" >TWITTER-USERNAME</span>&amp;amp;url=' type='text/javascript'/&gt;<br />&lt;/div&gt;</pre>
<p><span style="color: rgb(0, 0, 0);font-size:130%;" >For Small Button:</span></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://4.bp.blogspot.com/_-j7_-ccACuU/SzxjV8gaYMI/AAAAAAAABY0/RvlO2jDDiic/s1600-h/Topsy+Small+Retweet+Counter+Buttons+For+Blogger.png" title="Topsy Small Retweet Counter Buttons For Blogger"><img decoding="async" style="cursor: pointer; width: 114px; height: 56px;" src="https://4.bp.blogspot.com/_-j7_-ccACuU/SzxjV8gaYMI/AAAAAAAABY0/RvlO2jDDiic/Topsy+Small+Retweet+Counter+Buttons+For+Blogger.png" alt="Topsy Small Retweet Counter Buttons For Blogger" id="BLOGGER_PHOTO_ID_5421317280117711042" border="0" /></a></p>
<pre style="border: 1px solid black; overflow: auto; height: 80px; width: 90%;">&lt;div style='padding: <span style="font-weight: bold; color: rgb(255, 102, 0);">4</span>px; float: <span style="font-weight: bold; color: rgb(204, 51, 204);">right</span>;'&gt;<br />&lt;script src='http://button.topsy.com/widget/retweet-small?nick=<span style="font-weight: bold; color: rgb(255, 0, 0);font-size:130%;" >TWITTER-USERNAME</span>&amp;amp;url=' type='text/javascript'/&gt;<br />&lt;/div&gt;</pre>
<p><span style="font-weight: bold; color: rgb(51, 51, 255);font-size:130%;" >Important</span> : Replace <span style="font-weight: bold; color: rgb(255, 0, 0);">TWITTER-USERNAME</span> with your Twitter username.</p>
<p>5.Now save your template and you are done.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/topsy-retweet-counter-buttons-blogger/">How To Add Topsy Retweet Counter Buttons For 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/topsy-retweet-counter-buttons-blogger/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
