Solution Google Only Indexes 26 URLs In Blogspot Blog 2013

Posted by Dheeraj Singh Saturday, May 11, 2013 0 comments

To be successful in your blogging career you must have to generate decent organic traffic to your blog. By the term "organic traffic" I mean the traffic which comes to your blog through search engines like Google. And for Organic Traffic Your site should be poperly indexed on google and for this you need to submit Sitemap of your site For the Seach Engines Bots to crawling your Pages. An XML, also called Google sitemap, is necessary for a blog or website which helps search engine crawlers to crawl and index content on your blog easily. By adding Google sitemap to your blogger blog, no need to ping your blog when ever you update your blogger blog. The XML Sitemap file is like a directory of all web pages that exist on your website or blog.


Blogger blogs with .blogspot sub-domains contain an xml sitemap on them which is generated automatically and kept updated with your latest content. The sitemap of blogs with .blogspot sub-domain can be accessed at http://yourblogurl.blogspot.com/sitemap.xml and you can submit it directly to Google Webmaster Tools or anywhere else, but when you add your custom domain to your Blogger blog, the xml sitemap couldn't be accessed anymore and thus you need to manually configure XML/Google sitemap for your Blogger blog. If you Are blogspot Blogger User Then You May be Familiar With Google Webmaster Tools Issue i.e Google Webmaster Tools Indexes Only 26 URLs of Your Blogger Posts.


Recomended Posts : Add-Recomended-Post-Slide-Out-Widget-In-Blogger-2013
                                   Social-Media-facebook-twitter-Floating-Share-Buttons-Blogger
                                   How-to-edit-robotstxt-file-step-by-step

So To solve this 26 URLs Google Webmaster tool Problem You Need to Change Your Sitemap URL 

To Index More Pages Quickly and Completely .To do so, follow below simple steps written Below:

  • You Need To Login to Your Blogger dashboard.
  • Now Goto Your Desired Blog in which you want to change the Sitemap.
  • Now Goto Setings > Search Preference > Scroll down Page and Edit Custom Robots.TXT Field.
  • Now in That Box Write Below Code To Submit Your Sitemap.

If your Blog Having Less That 500 URL's Then Use Below Url For SiteMap

For 500 Posts Use this URL
www.myblog.com/atom.xml?redirect=false&start-index=1&max-results=500



More Than 500 Posts Use This URL
www.myblog.com/atom.xml?redirect=false&start-index=501&max-results=500

More Than 1000 Posts Use this URL
www.myblog.com/atom.xml?redirect=false&start-index=1000&max-results=500

Note : If Your Blog Having More Than 1000 or 2000 Post Than Just Change start-index value(Red Color Word) of upper sitemap to Submit Another Sitemap.

You can Directly Submit These URL's To Your Webmaster Tools Accounts According to your Post Quantity.

You May Also Like It : Top-10-mistakes-by-bloggers-seo-tips

You are all done! Now whenever Google will crawl your blog, it will first look robots.txt file on your blog as it always do and then will crawl your entire blog. This was the step by step guide on how to add blogger sitemap in Google Webmaster Tools. All latest posts are fetched via atom.xml on your blog and your latest content is automatically suggested to Google bot. Thus your blog content will get indexed easily. Please share this article if you find it helpful. If you have any feedback, suggestion or any query then feel free to comment below this post. Enjoy!

I hope you like this post you can leave your comment here.

If you Still have any problems? Then feel free to drop your comments here.
Don't Forget To Leave Ur Valuable Comment Of Your Experience With us !!!! And Also Join Our Blog And Subscribe For Latest Updates In Ur inbox..

Enjoy And Stay Connected With Techoupdates
 
Must Read :  How-To-Add-Pop-Up-Facebook-Like-Plugin-or-Box-On-your-blogger
                      How-to-add-Facebook-Like-Plugin-in-Blogger-2013
                      How-to-edit-DNS-settings-in-Intuit-For-Blogger
                      How-to-Display-adsense-ads-below-first-post-of-blog
                      How-to-show-or-display-adsense-ads-on-mobile-version-of-blogger-template
                      how-to-add-or-change-favicon-icon
                      How-to-add-Meta-Tags-Keywords-Description-in-blogs-or-websites
                      10-Tips-To-Drive-Traffic-From-Forums-To-Your-Blog
                      How-To-Increase-Alexa-Ranking-Of-Blogs-Websites-Easily-and-fast
                      10-ways-to-increase-backlinks-for-blogs-Seo-Tips

How To Add Online Calculator In Website or Blog

Posted by Dheeraj Singh Wednesday, May 8, 2013 0 comments

A fun gadget you can add to your website or blog is a simple five-function calculator -- one that includes addition, subtraction, multiplication, division, and exponentiation. If you are a realtor, real estate agent, mortgage broker , real estate professional, online store owner or write an educational blog, many of your visitors will find an on-screen calculator quite useful and you can help your customers/visitors by adding a calculator to your web site or blog.



It's easy to include a javascript web calculator among your sidebar widgets, or embed the tool in its own page. All you need to do is copy All the below Codes which i have placed in below Html Container Box. And add it to you blog or website. So Without Wasting Time Lets See How To Install Online Calculator.


Recomended Posts : Recover-Deleted-data-Formatted-Data-or-Damaged-Partitions
                                   How-to-backup-Firefox-password-without-Any-Software-or-Addons

Steps For How To Add Online Calculator In Website or Blog

If you Are a blogger Then Just Follow Below Steps and If you Are a Website Owner Than Just place Below Code Anywhere in your website depending on your website looks.
  • In Blogger Login to your blogger dashboard and Select your Desired Blog.
  • Now  Goto Layout > Add a Gadget.
  • And Paste Here Below Copied Code in Empty Box


<!-- This Script is from http://www.techoupdates.com, Coded by: Dheeraj Singh-->
<center>

<form name="Keypad" action="">
<table>
<b>
<table border=2 width=50 height=60 cellpadding=1 cellspacing=5>
<tr>
<td colspan=3 align=middle>
<input name="ReadOut" type="Text" size="24" value="0" width="100%" />
</td>

<td>
<input name="btnClear" type="Button" value="  C  " onclick="Clear()" />
</td>
<td><input name="btnClearEntry" type="Button" value="  CE " onclick="ClearEntry()" />
</td>
</tr>
<tr>
<td>
<input name="btnSeven" type="Button" value="  7  " onclick="NumPressed(7)" />
</td>
<td>
<input name="btnEight" type="Button" value="  8  " onclick="NumPressed(8)" />
</td>
<td>
<input name="btnNine" type="Button" value="  9  " onclick="NumPressed(9)" />
</td>
<td>
</td>
<td>
<input name="btnNeg" type="Button" value=" +/- " onclick="Neg()" />
</td>
<td>
<input name="btnPercent" type="Button" value="  % " onclick="Percent()" />
</td>
</tr>
<tr>
<td>
<input name="btnFour" type="Button" value="  4  " onclick="NumPressed(4)" />
</td>
<td>
<input name="btnFive" type="Button" value="  5  " onclick="NumPressed(5)" />
</td>
<td>
<input name="btnSix" type="Button" value="  6  " onclick="NumPressed(6)" />
</td>
<td>
</td>
<td align=middle><input name="btnPlus" type="Button" value="  +  " onclick="Operation(&#39;+&#39;)" />
</td>
<td align=middle><input name="btnMinus" type="Button" value="   -   " onclick="Operation(&#39;-&#39;)" />
</td>
</tr>
<tr>
<td>
<input name="btnOne" type="Button" value="  1  " onclick="NumPressed(1)" />
</td>
<td>
<input name="btnTwo" type="Button" value="  2  " onclick="NumPressed(2)" />
</td>
<td>
<input name="btnThree" type="Button" value="  3  " onclick="NumPressed(3)" />
</td>
<td>
</td>
<td align=middle><input name="btnMultiply" type="Button" value="  *  " onclick="Operation(&#39;*&#39;)" />
</td>
<td align=middle><input name="btnDivide" type="Button" value="   /   " onclick="Operation(&#39;/&#39;)" />
</td>
</tr>
<tr>
<td>
<input name="btnZero" type="Button" value="  0  " onclick="NumPressed(0)" />
</td>
<td>
<input name="btnDecimal" type="Button" value="   .  " onclick="Decimal()" />
</td>
<td colspan=3>
</td>
<td>
<input name="btnEquals" type="Button" value="  =  " onclick="Operation(&#39;=&#39;)" />
</td>
</tr>
</table>
</b></table>

</form>
</center>
<font face="Verdana, Arial, Helvetica" size=2>
<script language="JavaScript">
<!-- Begin
var FKeyPad = document.Keypad;
var Accumulate = 0;
var FlagNewNum = false;
var PendingOp = "";
function NumPressed (Num) {
if (FlagNewNum) {
FKeyPad.ReadOut.value  = Num;
FlagNewNum = false;
   }
else {
if (FKeyPad.ReadOut.value == "0")
FKeyPad.ReadOut.value = Num;
else
FKeyPad.ReadOut.value += Num;
   }
}
function Operation (Op) {
var Readout = FKeyPad.ReadOut.value;
if (FlagNewNum && PendingOp != "=");
else
{
FlagNewNum = true;
if ( '+' == PendingOp )
Accumulate += parseFloat(Readout);
else if ( '-' == PendingOp )
Accumulate -= parseFloat(Readout);
else if ( '/' == PendingOp )
Accumulate /= parseFloat(Readout);
else if ( '*' == PendingOp )
Accumulate *= parseFloat(Readout);
else
Accumulate = parseFloat(Readout);
FKeyPad.ReadOut.value = Accumulate;
PendingOp = Op;
   }
}
function Decimal () {
var curReadOut = FKeyPad.ReadOut.value;
if (FlagNewNum) {
curReadOut = "0.";
FlagNewNum = false;
   }
else
{
if (curReadOut.indexOf(".") == -1)
curReadOut += ".";
   }
FKeyPad.ReadOut.value = curReadOut;
}
function ClearEntry () {
FKeyPad.ReadOut.value = "0";
FlagNewNum = true;
}
function Clear () {
Accumulate = 0;
PendingOp = "";
ClearEntry();
}
function Neg () {
FKeyPad.ReadOut.value = parseFloat(FKeyPad.ReadOut.value) * -1;
}
function Percent () {
FKeyPad.ReadOut.value = (parseFloat(FKeyPad.ReadOut.value) / 100) * parseFloat(Accumulate);
}
// End -->
</script>

<font face="Tahoma"><a target="_blank" href="http://www.techoupdates.com/"><span style="font-size: 8pt; text-decoration: none">Online Calculator</span></a></font></font>

  • And Now Click on Save Button.

Lets See How Online Calculator Looks After Placing Above Code.




--> Online Calculator

You Can Check It By Doing Some Calcutions In It.

That's It You Are Done. I hope you like this post you can leave your comment here.

If you Still have any problems? Then feel free to drop your comments here.
Don't Forget To Leave Ur Valuable Comment Of Your Experience With us !!!! And Also Join Our Blog And Subscribe For Latest Updates In Ur inbox..

Enjoy And Stay Connected With Techoupdates
 
Must Read :  Recover-Deleted-data-Formatted-Data-or-Damaged-Partitions
                      How-To-solve-please-insert-the-disk-into-the-drive-Error
                      Disable-CHKDSK-Process-on-Windows-Startup.html
                      How-to-Remove-Write-Protection-Error-From-a-USB-Drive
                      Now you can get hotspot shield premium vpn for 30 days for Free
                      How-to-edit-DNS-settings-in-Intuit-For-Blogger
                      How to Hide LastName In Facebook Account
                      How to view non clickable facebook profile picture in chrome
                      How to view non clickable facebook profile picture for firefox
                      How To Add Profile Picture In Facebook Chat
                      How To Chat On Facebook Using Opera Mini
                      How To secure your Facebook profile picture by making it not clickable
                      Easiest way how you can connect two PCs (Computers) by LAN Cable

Airtel Free 3g Trick Working Host List May 2013

Posted by Dheeraj Singh Tuesday, May 7, 2013 0 comments

Today we are giving you a Blasting airtel 3g trick which is confirm working all over india, As we all know that Airtel Freezone trick was blocked a couple of days ago, but thats not true, it was blocked actually but we have another alternative for you and it is working without any glitches. FreeZone trick does not have any speed capping or SIM Blocking issue. Airtel has previously blocked the Host, so this time i m going to Post List of Working Airtel Host May 2013.



Recomended Post : VodaFone-Latest-Free-Gprs-Trick-2013
                                 Reliance-Latest-3G-UDP-and-TCP-Trick-2013

I am Self tested this trick in UP East, Haryana, Delhi, Gujrat. and some South City's Sims and confirmed with my Friends. So it is Confirmed that it'll work all over the India. You Must try your luck with it.
So without Wasting Time I'm Going to Post List of Airtel Working Hosts List.

Airtel Working Host List May 2013 

125.21.241.22
125.21.241.108
122.170.122.191/
122.170.122.201
122.170.122.202/
122.170.122.212/
122.170.122.215/
122.170.122.214/
wap.indiagames.com
203.115.112.29
202.46.200.191
202.58.121.201
124.153.106.131/
10.2.216.230:8080/
mobilemail.in
tadkalive.com
gclub.in
103.15.227.45
airtellive.com
live.airtelworld.com
airtel.in/data
airtel.in/freezone
d.airtelworld.com
203.115.112.5/Amazingindia

Let's See How to Edit or Change Host in Config

1) use in nmdvpn config or use in openvpn  config to change host just see below Example :

http-proxy-timeout 8
http-proxy **.**.**.** ****             Here you can change Working Proxy.
http-proxy-option CUSTOM-HEADER Host xxx.xxx.xxx.xxx  Here Put Your Working Host
http-proxy-option CUSTOM-HEADER X-Online-Host xxx.xxx.xxx.xxx  Here Put Your Working Host

For Airtel Trick and Config Visit in our Previous Post Here. 


I hope you like this post you can leave your comment here.

If you Still have any problems? Then feel free to drop your comments here.
Don't Forget To Leave Ur Valuable Comment Of Your Experience With us !!!! And Also Join Our Blog And Subscribe For Latest Updates In Ur inbox..

Enjoy And Stay Connected With Techoupdates
 
Must Read : VodaFone-Latest-Free-Gprs-Trick-2013
                      Reliance-Free-Live-TV-Channels-Trick-2013
                      Get-ipl-cricket-commentry-for-free-2013
                      Airtel-Latest-free-internet-Trick-2013
                      Reliance-Latest-3G-UDP-and-TCP-Trick-2013

Hello friends If you’ve been searching for a slide out recommended post for your blogger blog then look no further because you’ll be grabbing one of the finest here. Today In this post I'll show you an awesome new gadget that can be seen in Wordpress blogs But now it is available for Blogspot Blogs. Recommended post slider in each post is interesting widget. The Recommended Post slide Out Widget is an invitation to the reader to read any other post once he has read one of your blog entries. It's both useful for you (can improve your Click Through Rate (CTR) ) and for your blog visitors too. Those of you who follow some Wordpress blogs have seen the recommended or related posts slider.



Recomended Posts : How-to-add-Facebook-Like-Plugin-in-Blogger-2013
                                   Social-Media-facebook-twitter-Floating-Share-Buttons-Blogger
 
You may have seen this type of widget in many popular websites. Recommended post slide out widget always helps your blog visitors to keep surfing different posts on your blog without leaving your blog. With this widget, your visitor is surly going to stick around for a longer time. So how does this widget work? When you scroll down to this blog you will see a recommended post rolling out from the right. That is the slide out recommended post widget we are talking about and this widget have been proven to keep readers in your blog for a longer time.
 

There are many great reasons which explain how important is recommended post widget

  • A Boost in your Pageviews and Visit stay time on your Blog
  • More Tweets, Likes and +1s on your posts due to social sharing buttons

  • Allow readers to opt-out (Users can select whether to turn of the slide or not)
  • It appears when the user scrolls to bottom and Hides/contracts when the scroll is up. Thus not distracted the readers attention a lot.
  • Its Free and easy-to-install!

Now Let's See How To Install "The Recomended Post Slide Out Widget" To Blogger?

  • Log in into your Blogger Dashboard Account, then go to Layout.
  • Now Click on Add a Gadget Link.
  • Now Choose "HTML/JavaScript" option.
  • Now Paste Below Code In It.
<div id="hlslidein" style="display:none;"> <div class="help">?</div><div class="expand">+</div> <div class="close">X</div> <p>Recommended for you</p> <div id="hlslidein_image"></div> <div  id="hlslidein_title">Loading..</div> </div> <script> if(document.location.href.split("/").length==6&&document.location.href.indexOf(".html")!=-1){if(typeof hl_onload_queue=='undefined')var hl_onload_queue=[];if(typeof hl_dom_loaded=='boolean')hl_dom_loaded=false;else var hl_dom_loaded=false;if(typeof hl_async_loader!='function'){function hl_async_loader(src,callback,id){var script=document.createElement('script');script.type="text/javascript";script.async=true;script.src=src;script.id=id;var previous_script=document.getElementById(id);if(previous_script)if(previous_script.readyState=="loaded"||previous_script.readyState=="complete"){callback();return}else{script=previous_script}if(script.onload!=null)previous_callback=script.onload;script.onload=script.onreadystatechange=function(){var newcallback;if(previous_script&&previous_callback)newcallback=function(){previous_callback();callback()};else newcallback=callback;if(hl_dom_loaded){newcallback()}else hl_onload_queue.push(newcallback);script.onload=null;script.onreadystatechange=null};var head=document.getElementsByTagName('head')[0];if(!previous_script)head.appendChild(script)}}if(typeof hl_domLoaded!='function')function hl_domLoaded(callback){hl_dom_loaded=true;var len=hl_onload_queue.length;for(var i=0;i<len;i++){hl_onload_queue[i]()}}hl_domLoaded();hl_async_loader("http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js",function(){hl_async_loader("http://mybloggertricksorg.googlecode.com/files/Recommended%20Post%20Slide.js",function(){},"hl-out-slide")},"jQueryjs")} </script> <a href="http://www.techoupdates.com/2013/05/Add-Recomended-Post-Slide-Out-Widget-In-Blogger-2013.html" target="_blank"></a>

  • Now Save The Widget.
  • Go to Template > Edit HTML
  • Now Search By Pressing (CTRL + F) for the following Below code :


    <div class='post-footer-line post-footer-line-1'>

OR Search For The Following.

    <p class='post-footer-line post-footer-line-1'>

OR Search For The Following.

    <data:post.body/>
  • Now Paste below Code After any of these Above Lines.
    <b:if cond='data:blog.pageType == "item"'>
    <div style='display:none' id='bpslidein_place_holder'></div>
    </b:if>
  • Now Save your template. And that's it!
I hope you like this post you can leave your comment here.

If you Still have any problems? Then feel free to drop your comments here.
Don't Forget To Leave Ur Valuable Comment Of Your Experience With us !!!! And Also Join Our Blog And Subscribe For Latest Updates In Ur inbox..

Enjoy And Stay Connected With Techoupdates
 
Must Read :  How-To-Add-Pop-Up-Facebook-Like-Plugin-or-Box-On-your-blogger
                      How-to-add-Facebook-Like-Plugin-in-Blogger-2013
                      How-to-edit-DNS-settings-in-Intuit-For-Blogger
                      How-to-Display-adsense-ads-below-first-post-of-blog
                      How-to-show-or-display-adsense-ads-on-mobile-version-of-blogger-template
                      how-to-add-or-change-favicon-icon
                      How-to-add-Meta-Tags-Keywords-Description-in-blogs-or-websites
                      10-Tips-To-Drive-Traffic-From-Forums-To-Your-Blog
                      How-To-Increase-Alexa-Ranking-Of-Blogs-Websites-Easily-and-fast
                      10-ways-to-increase-backlinks-for-blogs-Seo-Tips

Idea BlackBerry Trick 2013 First On Net

Posted by Dheeraj Singh Monday, May 6, 2013 0 comments

Today we are posting very dashing trick of this new month. Now you can use free GPRS on your IDEA Network.Yes, Its very simple trick just follow some simple steps . As we have already talk about the airtel , vodafone trick and all free internet proxy trick which is working on maximum states and getting good response from them.Now here i am sharing a new Idea 3G gprs trick which is found in these days and working .



This free Idea 3G GPRS trick allows you free surfing of webpages and downloading content from websites. This is the latest works till now, this is 100% working idea BlackBerry Trick 2013. As this is BlackBerry Trick, So you have to Activate Idea BlackBerry Plan in your Sim Card to use this trick. This trick works fine in delhi, might works in all states. In This trick There Is No Speed Capping Problem you can download as musch as you can . It means you can download unlimited amount of data with this trick.

Some Features of Idea BlackBerry Tricks Are Listed Below.

  • It Gives High Speed approx 1-1.5 mbps Download speed in IDM with 21 mbps Modem.
  • Easy To Use And Set Up..!!
  • No speed capping
  • No sim blocking
  • Works on blocked sim also
  • No Disconnection Problem
  • No Registration Required
Recomended Post : Airtel-BlackBerry-Trick-UDP-Server-05-May-2013
                                 VodaFone-Latest-Free-Gprs-Trick-2013
                                 Reliance-Latest-3G-UDP-and-TCP-Trick-2013

How to use? Well as i already mentioned above its not totally free you need to recharge your mobile with some amount to activate this IDEA BB plan in your main account balance after recharging your mobile you have to follow some simple steps which i have mentioned in our TXT File.
For Security Reason i can't Post it openly as we all know that nowadays Tricks are going stopped Very fast by Telecom Operators and one more reason is that all bloggers and forum members copying Tricks to take credit or Money . That's why you need to Comment Below For TXT File for whole Procedure.
This is genuine trick which is never shared on Internet..On huge demands and requests of my site visitors I am posting this on my blog.

So For Password Plz Like Our Facebook Page And Comment Below Simple.
And Then just connect your net and start enjoying full speed internet for unlimited downloading with unlimited speed for 1 month. After 1 month repeat the above steps and enjoy this hack every month.

I hope you like this post you can leave your comment here.

If you Still have any problems? Then feel free to drop your comments here.
Don't Forget To Leave Ur Valuable Comment Of Your Experience With us !!!! And Also Join Our Blog And Subscribe For Latest Updates In Ur inbox..

Enjoy And Stay Connected With Techoupdates
 
Must Read : Airtel-BlackBerry-Trick-UDP-Server-05-May-2013
                      VodaFone-Latest-Free-Gprs-Trick-2013
                      Reliance-Free-Live-TV-Channels-Trick-2013
                      Get-ipl-cricket-commentry-for-free-2013
                      Airtel-Latest-free-internet-Trick-2013
                      Reliance-Latest-3G-UDP-and-TCP-Trick-2013

Airtel BlackBerry Trick UDP Server 05 May 2013

Posted by Dheeraj Singh Sunday, May 5, 2013 16 comments

This is party Time guys We are back with airtel Udp vpn trick 2013. Once again we are back with Rocking VPN trick for Airtel users why use TCP if we have UDP trick with Lightning fast speed. This trick is not totally free but its affordable for everyone and it is working and now online with airtel network for free gprs . Yes this tricks is based on udp vpn Open port its give high speed around 2-3 mbps in IDM. Last time we share with you airtel tcp based vpn trick for airtel.in which most of us faced speed capping Problem but now in this trick you will never gonna face this problem. So let's see some Features of this Trick.



Features Of Airtel BlackBerry Trick

  • It Gives High Speed approx 2-3 mbps Download speed in IDM with 21 mbps Modem.
  • Easy To Use And Set Up..!!
  • No speed capping
  • No sim blocking
  • Works on blocked sim also
  • No Disconnection Problem
  • No Registration Required
Recomended Post : VodaFone-Latest-Free-Gprs-Trick-2013
                                 Reliance-Latest-3G-UDP-and-TCP-Trick-2013

How to use? Well its not totally free you need to recharge your mobile with Rs150 you will get Rs140 in your main account balance after recharging your mobile you have to follow these simple steps.


  • Type AIRTELBB andSend it to 121 Toll Free
  • Now Select 6th Option “Activated Rs129 BlackBerry plan”
  • Confirm the Subscription by Replying 1 (Yes).
  • Now They will Deduct Rs129 from you Main account balance
  • Connect Internet with APN- blackberry.net
  • Now Connect with Our Given Vpn.
  • And now Enjoy Lightning fast Internet for 30Days.
  • One more thing , never share this trick with anyone and yes don’t forget to say thanks And Like Our Facebook FanPage.
Note : If they asking for are you using blackberry handset reply with yes.

TechoUpdates Edited VPN Config Download Here

For Security Protection of this vpn I'm Making It Password Protected So For Password Plz Like Our Facebook Page And Comment Below Simple.
And Then just connect your net and start enjoying full speed internet for unlimited downloading with unlimited speed for 1 month. After 1 month repeat the above steps and enjoy this hack every month.

I hope you like this post you can leave your comment here.

If you Still have any problems? Then feel free to drop your comments here.
Don't Forget To Leave Ur Valuable Comment Of Your Experience With us !!!! And Also Join Our Blog And Subscribe For Latest Updates In Ur inbox..

Enjoy And Stay Connected With Techoupdates
 
Must Read : VodaFone-Latest-Free-Gprs-Trick-2013
                      Reliance-Free-Live-TV-Channels-Trick-2013
                      Get-ipl-cricket-commentry-for-free-2013
                      Airtel-Latest-free-internet-Trick-2013
                      Reliance-Latest-3G-UDP-and-TCP-Trick-2013

Social Media facebook twitter Floating Share Buttons Blogger

Posted by Dheeraj Singh Friday, May 3, 2013 0 comments

Transparent Floating Vertical Bar With Share Buttons For Blogger


Social Media sites like facebook and twitter are considered as the great resource of free and targeted traffic. We should not ignore them if we want serious results through our blogging. Social Media has become the main source of your Blog/website traffic,there fore never underestimate the social media networks.For Boosting Blog traffic you should add Social Sharing Buttons Widget to your Blog.Which helps you and your visitors to easily share your Blog Contents with their Friends, as a result you will get the bonus of traffic to your blog. It will help to increase blog pageviews by promoting our content among the new audience. Our blog posts holds great part of success of our blog because as we all know that content is king.

Recomended Posts : How-to-add-Facebook-Like-Plugin-in-Blogger-2013
                                   How-To-Add-Pop-Up-Facebook-Like-Plugin-or-Box-On-your-blogger




Delivering great and original content can help us to achieve our blogging goals but writing unique content is not enough if there is nobody to read it. We have to promote and share our content on these social media sites so that visitors come to our blog and read what we have written for them. To share the content social sharing buttons widget plays a vital role but they are not so attractive to encourage the readers for sharing the content. One of the best way to get more shares from your readers is to add social sharing widget below post title because place under the post title is most viewed by the readers. So, today I came with a very stylish and brand new social media sharing widget that surely encourages the readers to share our content. So, let see how to add this fancy social sharing widget in blogger.



How To Add Share Buttons In Blogspot?

  • Go To Your www.blogger.com
  • Open Your Desire Blog.
  • Go To Layout.
  • Click "Add A Gadget" Where You Want To Add It.
  • Now Scroll To "HTML-JAVASCRIPT"
  • Click "+" Icon To Add It.
  • Now Copy The Below Code And Paste It To There.
  • Leave The Title Empty.
  • Click Save, Now You Are Done.

Social Networking/Sharing widget Code/Script For blogger post

<div class="addthis_toolbox addthis_floating_style addthis_counter_style" style="left:50px;top:50px;">
<a class="addthis_button_facebook_like" fb:like:layout="box_count"></a>
<a class="addthis_button_tweet" tw:count="vertical"></a>
<a class="addthis_button_google_plusone" g:plusone:size="tall"></a>
<a class="addthis_counter"></a>
</div>
<script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-516ff8e04b04378b"></script>

I hope you like this post you can leave your comment here.

If you Still have any problems? Then feel free to drop your comments here.
Don't Forget To Leave Ur Valuable Comment Of Your Experience With us !!!! And Also Join Our Blog And Subscribe For Latest Updates In Ur inbox..

Enjoy And Stay Connected With Techoupdates
 
Must Read :  Recover-Deleted-data-Formatted-Data-or-Damaged-Partitions
                      How-to-add-Facebook-Like-Plugin-in-Blogger-2013
                      How-to-edit-DNS-settings-in-Intuit-For-Blogger
                      How to Hide LastName In Facebook Account
                      How to view non clickable facebook profile picture in chrome
                      How to view non clickable facebook profile picture for firefox
                      How To Add Profile Picture In Facebook Chat
                      How To Chat On Facebook Using Opera Mini
                      How To secure your Facebook profile picture by making it not clickable
                      Easiest way how you can connect two PCs (Computers) by LAN Cable

Blogger Widgets

Welcome To My Website

Hi, welcome to my website. Explore the site and enjoy your stay and remember to comeback with your friends. Techoupdates.com is a websites where you can get Latest Free Gprs Tricks, Seo Tips, Latest Technology News, Internet Tricks, Latest Updates About Technologies, Smartphones, Android And Step By Step Tutorials..

Follow Us On Facebook