Hundreds of Easy Blog Tips are to come, Don't Miss out any Single one, Subscribe NOW

How to stop Adsense ads in FeedBurner

There is no option to Stop showing adsense ads in Feedburner or in Google Adsense with new Interface, though old Adsense interface had option of suspending Feed ads!

Unable to link Adsense to Google Analytics

Are you getting this message when linking your Google Adsense with Google Analytics account? Even your both account are logged in with same email IDs?

  • Link to Existing Account on Google Analytics 
  • No accounts could be found to link. 
  • In order to link an account to AdSense, you must have administrative privileges on that account, and that account cannot have already been linked to AdSense. 
  • You can still go back and create a new account to link to AdSense.

How I get Payment After Closing my Google Adsense Account

First, i would like to share that why I needed to Close my Google Adsense Account. You must be thinking of due to less revenue from Adsense? No!
Actually I accidently got approved for Two Adsense accounts with the same name and Address, and only Email Address Changed.
As Adsense policy clearly mentions that you can only have one Individual Adsense Account at a Time, so i thought of closing one account, to avoid disabling of both account any time by adsense.
After sending request to Google for closing account, It was told that I will be paid within three months, but how i will be paid, mean how i will be given Western Union MTCN Number, it was not mentioned.
But i was thinking It will be sent to my Email Address...

FeedBurner Subscription list is Gone/Deleted itself

You are here becuase you are one of the guy who have faced the problem in heading, mean you login to your feedBurner and you are shocked to know that all of your feed subscribers are gone though you haven't deleted them yourself.
I am also the victim of this, but a happy victim. I mean nothing to care about that thing
Because you just have to relax if you are having same problem as mentioned above. These subscribers list will be automaticlly re-appear.

How to Hide Blogger Nav Bar

Blogger has allowed its bloggers to play with the layout and design of the Blogger Posts and Pages in many ways, It can be played as much as you know about html coding, and website designing. One of the small trick is here.
Most of the bloggers don't like the Blogger Nav Bar, and want it to remove. (Be notified that it is completely legal to remove the Blogger Nav Bar.



Here is the simple trick and code to hide the Nav Bar, with a very comprehensive steps, As usual...
1. Sign in to blogger.com
2. Click Design ---> and then Template Designer
3. Click Advanced at left of the page
4. Click Add CSS
5. Paste the Following code in the "Add Custome CSS Box" (Code is shown in Blue fonts Below)

Center Align Blogger Header Widget

How to align Adsense in Header Widget to Center of the Page

Here are the Steps to do this
1. Login to the Blogger
2. Go to the Design --- > Edit HTML
Find the Code of Header Widget (You can find this by Pressing CTRL+F) Header Widget name must be Header1 or  Header2
3. Find the Code as shown in the snap below

How to embed ppt, pdf, excell and other office documents in Blogger Posts

You can do this by creating your account at websites where MS Office and other documents are uploaded for sharing, such as scribd or slideshare, etc
I am going to tell you the procedure to embed your documents in blogger posts from SCRIBD

1. First of all create an account at scribd.com, if you don't have an account already
2. upload a file to scribd which you want to share or embed in blogger posts
    (uploading procedure is very simple at scribd)
3. Copy the code of that uploaded file at scribd by clicking on EMBED and then COPY Button as shown in the snap below

How to add Related Posts to blogger Posts

1. Log in to your dashboard--> layout- -> Edit HTML
2. Click on "Expand Widget Templates"
3. Copy Below code.
4. and paste this code below the code as mentioned in step 5

Code starts from here...
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<div class='similiar'>

<div class='widget-content'>
<h3>Related Posts :</h3>
<div id='data2007'/><br/><br/>
<script type='text/javascript'>

var homeUrl3 = &quot;<data:blog.homepageUrl/>&quot;;
var maxNumberOfPostsPerLabel = 4;
var maxNumberOfLabels = 10;

maxNumberOfPostsPerLabel = 100;
maxNumberOfLabels = 3;


function listEntries10(json) {
var ul = document.createElement(&#39;ul&#39;);
var maxPosts = (json.feed.entry.length &lt;= maxNumberOfPostsPerLabel) ?
json.feed.entry.length : maxNumberOfPostsPerLabel;
for (var i = 0; i &lt; maxPosts; i++) {
var entry = json.feed.entry[i];
var alturl;
for (var k = 0; k &lt; entry.link.length; k++) {
if (entry.link[k].rel == &#39;alternate&#39;) {
alturl = entry.link[k].href;
break;
}
}
var li = document.createElement(&#39;li&#39;);
var a = document.createElement(&#39;a&#39;);
a.href = alturl;
if(a.href!=location.href) {
var txt = document.createTextNode(entry.title.$t);
a.appendChild(txt);
li.appendChild(a);
ul.appendChild(li);
}
}
for (var l = 0; l &lt; json.feed.link.length; l++) {
if (json.feed.link[l].rel == &#39;alternate&#39;) {
var raw = json.feed.link[l].href;
var label = raw.substr(homeUrl3.length+13);
var k;
for (k=0; k&lt;20; k++) label = label.replace(&quot;%20&quot;, &quot; &quot;);
var txt = document.createTextNode(label);
var h = document.createElement(&#39;b&#39;);
h.appendChild(txt);
var div1 = document.createElement(&#39;div&#39;);
div1.appendChild(h);
div1.appendChild(ul);
document.getElementById(&#39;data2007&#39;).appendChild(div1);
}
}
}
function search10(query, label) {
var script = document.createElement(&#39;script&#39;);
script.setAttribute(&#39;src&#39;, query + &#39;feeds/posts/default/-/&#39;
+ label +
&#39;?alt=json-in-script&amp;callback=listEntries10&#39;);
script.setAttribute(&#39;type&#39;, &#39;text/javascript&#39;);
document.documentElement.firstChild.appendChild(script);
}
var labelArray = new Array();
var numLabel = 0;
<b:loop values='data:posts' var='post'>
<b:loop values='data:post.labels' var='label'>
textLabel = &quot;<data:label.name/>&quot;;
var test = 0;
for (var i = 0; i &lt; labelArray.length; i++)
if (labelArray[i] == textLabel) test = 1;
if (test == 0) {
labelArray.push(textLabel);
var maxLabels = (labelArray.length &lt;= maxNumberOfLabels) ?
labelArray.length : maxNumberOfLabels;
if (numLabel &lt; maxLabels) {
search10(homeUrl3, textLabel);
numLabel++;
}
}
</b:loop>
</b:loop>
</script>
</div>
</div>
</b:if>

Code ENDs
 
5. Search for this code <data:post.body/>
You can start search by pressing CTRL+F

6. Click on "Save Templates" and refresh your site and you are done.
I have given the snap shot below and highlighted all steps there


This is 100% working procedure and I have created related posts on my site with this procedure, If you follow the procedures properly you will have error free related posts on your blogs. 

Your comments are always welcome.

Make your Post Links Open in a New Browser Window

In your blog if you give links of other websites then the website is opened in the same browser window which take away from your blog to the website and you loose your Blog Visitor. But you know, there is very simple procedure to make your blog links to open in new browser window, and also keep your visitor on your website. Here is how it is done.

While writing your blog in "New Post" or "Edit Posts" , click the "Edit HTML" tab (you normally write your blog in Compose Option selected at top right corner) and add a target tag to the link's code.


A link's HTML code looks like this


Redirect from Blogspot to dot.tk

Mapping Blogspot Web Address to DOT.tk Web Address
After all I found the actual process of mapping dot.tk domain to the blogspot !!! I searched the net for three days but not found clear procedure for mapping dot.tk to blogspot. But after many tries I finally mapped my www.khatrinetworks.tk to www.khatrinetworks.blogspot.com. Now there is no page displayed saying "
You are about to be redirected" if any one visits my blog with older name of blogspot. Also my older posts address in search engines is shown of my older web address with blogspot but when it is clicked it redirects to the page with newer web address withoug blogspot.

So here is how it works...


How to upload Blogger templates

Here's a step by step guide.

1. Download your favorite Blogger XML template to your computer. If the template is contained in a zip file, ensure you have extracted the XML template.

2. Log in to your Blogger dashboard and go to Template> Edit HTML

3. Ensure you back up your old template in case you decide to use it again. To do this, click on the "download full template" link and save the file to your hard drive.

4. Look for the section near the top where you can browse for your XML template:

5. Enter the location of your template and press "upload".

6. The HTML of your new template will now appear in the box below. You can preview your template or simply save to start using it!