Bloglution : How to Blog
Showing posts with label SEO. Show all posts
Showing posts with label SEO. Show all posts

Tuesday, 27 August 2013

How to Declare Blog Language in Blogger (Blogspot) Blog ?

This article focuses on declaring your blog’s language if you are on Blogger platform. Declaring a blog’s language is an important aspect of SEO (search engine optimization) as it helps search engine bots to identify your blog’s language and they don’t have to dig your site for language detection. This doesn’t possess greater SEO impact but will definitely speed up your crawling. It is significant to declare your site’s language when creating an international site or if your blog or site is in some other language. Most of the blogging platform such as Wordpress has built in language declaration functionality whereas in Blogger we have to edit our template by adding one line language declaration code. So, let’s move on to our tutorial.

Declare Blogger Language

Declaring blog’s language on Blogger
     
        (1)   Go to your blog’s dashboard.
        (2)   Go to ‘Template’ and then ‘edit HTML’.
        (3)   Now find the below code.
<html
    
        (4)   Now add the below code just next to <html.

lang="en-US" xml:lang="en-US"
  
        (5)   Sample view of your template after adding the above code.

<html lang="en-US" xml:lang="en-US" b:version='2' class='v2' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
  <head>
  
        (6)   Save your template and it’s done.

NOTE- The above tutorial shows how to declare your blog’s language as “English-US” if you blog in some other language, just replace “en-US” with yours code. Just visit ISO 639-1 Language Code List for different ISO language codes.

Friday, 16 August 2013

How to Fix W3C Validation Errors in Blogger (Blogspot) Blog ?

Today’s article focuses on fixing W3C validation errors in Blogger XHTML template. Bloglution has always shared quality post to make readers get most out of it in easiest ways possible. In this post we would learn to minimize those W3C validation errors, although it is nearly impossible to remove all of them but we can fix about 95% of them in no time. When I checked Bloglution for the first time I was shocked to see the results, it has 313 errors, I worked on it and reduced it to only 11 errors. Almost all Blogger templates contain hundreds of errors. These errors can cause crawl errors by search engine bots, resulting improper crawling. Also it leads to slower page loading. Most of us are unaware of these errors, and when we notice we got surprised by seeing hundreds of them. Firstly let’s take a quick look on W3C before proceeding to our tutorial.


FIXING BLOGGER W3C ERRORS

W3C- It stands for ‘World Wide Web Consortium, the main international standards organization for the world wide web. Their ultimate aim is the improvement of online available documents for assuring quality to internet users. Secondly, complying with them reduces browsers incompatibility issues. The Markup validation service by W3C is a validator, which allows internet users to check HTML and XHTML documents for well formed markup.  Its impact on SEO is still not clear but reducing them to minimum is always a good practice which definitely benefits you. So, let’s start the tutorial.

Fixing W3C Validation Errors in Blogger

The first step towards fixing your W3C errors is to analyze them. Just go to W3Cvalidator, enter your blog’s URL and hit enter. You will be presented with your validation report with your errors and warnings count. Now you know, how many errors are there in your template. Don’t worry, follow the tutorial and you will see the difference.


W3C VALIDATION

    
    (1)   Fixing DOCTYPE DECLARATION- This is main root cause for most of the W3C errors, about 90% of your errors can be fixed by declaring it correctly. Let’s see how.
      (a)    Go to your Blog’s dashboard.
      (b)   Click on ‘Template’ and then ‘Edit HTML’.
      (c)    Find the below code using ctrl+f. This code is present between <!DOCTYPE html> and <head> section.

<html b:version='2' class='v2' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>

      (d)   Replace the above code with the below code.

<html b:version='2' class='v2' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data'> <html xmlns:expr='http://www.google.com/2005/gml/expr'/>


BLOGGER DOCTYPE DECLARATION

      
      (e)    Remember to delete the Read more link.
      (f)    Save your template.

    (2)   Fixing Quickedits- Quickedits are another major culprit which hurdles W3C validations. Actually Blogger provides us this quickedits as a facility for editing our blog directly from the front view. You have also noticed that when you are signed in, these quickedit icons are present on the right bottom of every widget. Removing them from our template can reduce up to 30 % validation errors. For removing them:-
      (a)    Go to your blog’s dashboard.
      (b)   Click on ‘Template’ and then ‘Edit HTML’.
      (c)    Find the below two codes and delete all of them.

<b:include data='post' name='postQuickEdit'/>  
and
     
<b:include name='quickedit'/>


BLOGGER QUICKEDIT

      


BLOGGER QUICKEDIT


      (d)   Save your template.

NOTE- This code occurs multiple times in your blog depending upon the number of your widgets, remember to remove this code each time to add a widget in your blog.

    (3)   Fixing Blogger images- Fixing Blogger images refers to the addition of ALT and TITLE tags. As I have already discussed them in detail in my previous article, adding ALT tag in your images can benefit you in many ways such as better SEO which help in driving more visitors to your blog. Not only that, images without ALT tag generates XHTML errors and warnings. Just go through the below articles to understand this topic clearly.
The above mentioned methods will minimize your validations errors up to 95%. After applying the above mentioned steps, once again go to W3C validator and check errors on your blog, definitely you will be surprised by the results as few negligible errors are left. These are unavoidable errors which cannot be fixed by us. They can only be fixed by the Blogger team.

Do let us know how many of you have minimized them and by how much?


Tuesday, 13 August 2013

How to Add ALT Tag in Blogger Images For Image SEO ?

We have already seen the Importance of Image SEO for Bloggers in my previous article, whenever we start a blog, we don’t emphasize much on adding ALT and TITLE tags to our images which is not a good practice in the eyes of SEO. These ALT tags inform search engines bots about our images categories, so that they can include it in their results based on a user query. For example, suppose I uploaded a image in my blog without an ALT tag, search engine bots can discover it but are not able to categorize it, hence they would not include it in their search results but on the other hand if I had added an ALT tag to it such as “Image SEO”, then they include my image in their results whenever a user searches for images related to image SEO. This would help bloggers in getting a good amount of organic traffic. This article states a step by step guide on How we can add ALT tag in Blogger Images?
Blogger Image SEO



Saturday, 10 August 2013

Importance of Image SEO For Bloggers

Image SEO is one of the most important key factor which has to be given priority during SEO. Most of us are unaware of this important factor and ignore it when we start blogging and leave our blog images as it is, without an ALT and TITLE tag which is not a good practice in the eyes of SEO. Here at Bloglution, I always tried to make my readers understand any topic in the easiest manner possible. Today’s article talks on the importance of Image SEO and How to optimize them by adding ALT and Title Tag?

Image SEO


Tuesday, 6 August 2013

Make Your Blogger Custom Domain Work With or Without ‘www’

So, your custom domain is not working without prefixing ‘www’ and you are getting error messsage 'Error 404, requested URL not found on server' that’s why you have landed here. Many newbie Bloggers are facing the same issue with their blogs, this simply means that there is a problem with their blog redirection or we can say that their naked domain such as bloglution.com is not redirected to www.bloglution.com. There are hundreds of solutions available over internet but you don’t have to mess up with them as Blogger provides this redirection option itself. If you try to change your Blog Address under publishing tab, Blogger wouldn’t accept it and gives you a message that ‘Blogs may not be hosted at naked domains (ex: yourdomain.com). Please add a top-level domain (www.yourdomain.com) or subdomain (blog.yourdomain.com)’. Many newbie’s try this also, but ignores the basic redirection option below it.

Blogger Tutorials

This tutorial will work only if you have added your custom domain correctly, I have written a post earlier on ‘Adding custom domain to blogger, go through it once to check if you have added it correctly. 


Tuesday, 30 July 2013

How to Submit Your Website to Alexa ?

This tutorial is basically for newbie’s stating the importance of alexa and how to submit your website with them? But before moving to our tutorial, let’s have a look on Alexa and its importance. You have definitely heard many times about ‘Alexa’ and ‘Alexa rankings’ etc. so let’s see what actually they are?

Alexa and its Importance- Alexa internet, Inc is a subsidiary company of amazon.com which provides web traffic data. It is one of the best ranking tools available online. It provides various important data and statistics of every website such as global rank, country rank, backlinks, keywords and much more as it picks new domains itself. So, it’s a good idea to submit your website/blog yourself and claim your ownership. By claiming your site you can add more details such as your contact details to your website Alexa profile which would help advertisers and other people in contacting you. Website submission offers you some free services but in order to get more valuable services you have to upgrade your account to a premium one. Last but not the least you can use Alexa to compare your traffic and other stats with your competitors. Now you understand the importance of Alexa for a website.

Submit Website to Alexa


Tuesday, 25 June 2013

How to Use Google's Disavow Tool ?

Google’s Disavow Tool is a tool which is used as a last resort in cleaning of your link profile or we can say removing spammy links or bad links from your site. When you go through different articles related to recovery of websites from different Google’s algorithm updates such as Penguin, which hit websites with bad or spammy links, you surely get this tool mentioned in them. As I earlier said this tool should only be used as a last resort, From last resort I mean to say that you should only use this tool if you have considerable amount of spammy or bad links and you have tried all other ways of removing them but unable to remove all. I have written a detailed article on 
Only using Google's Disavow Tool isn’t enough, firstly try Email outreach method for contacting and requesting different webmasters to remove links to your site. Use this tool with caution as this tool may harm your site’s performance. When using this tool try to be detailed as possible and confess everything.

In this article we are going to discuss How to use Google's Disavow Tool effectively?

Tuesday, 18 June 2013

How to Recover From Penguin 2.0 ?

Google’s first or we can say initial Penguin update was rolled out in April 2012, after Panda. Since then Google released many versions of Penguin. Penguin is totally different from Google Panda update as it penalizes webmasters for only thin and duplicate content, Whereas Penguin penalizes webmasters for linkspam or we can say duplicate or irrelevant link to their websites. The latest version of Penguin rolled out on 22nd May, 2013 which impacted the minds of many webmasters about how their websites are going to be affected this time by Penguin 2.0. Penguin 2.0 is much advanced and comprehensive which goes far beyond than initial Penguin or Penguin 1.0 update as Penguin 1.0 looks only for your homepage links but Penguin 2.0 will monitor your internal links as well. 

Monday, 27 May 2013

What is Google Penguin And What are and its Functions ?

In this article, we are going to discuss and understand the basics about one of the most important Google algorithms update that is Google penguin. Many of us, when surf sites or blogs related to SEO (search engine optimization), blogging, we always get confused with these words which are Panda and Penguin or recover from panda / Penguin. When you through the article, you will gain their basics or I mean to say what actually they are? So, let’s start with Penguin itself.



Google Penguin- Google Penguin is an algorithm update as Google Panda (Panda Aimed in do wn ranking websites which provided poor user experience). Now the first question which arises in our mind is what is algorithm update? Don’t worry, I have written my previous post about “search algorithms” kindly go through it once.

What are Google Search Algorithms And Their Functions?

In this article, we are going to discuss Google search algorithm. Many of us wonder that how search on Google works. We type a keyword or phrase related to our search and hit enter and within a fraction of second, Google revert to us with best possible matches what we want. Google provides us with most relevant content according to the page rank; this page rank is associated with search algorithms. I would not go in deep about ‘how search works’ but simply wants to make you understand that what actually Google 
search algorithms means?


What are Google search algorithms?


Wednesday, 22 May 2013

How to Check Backlinks of Your Blog ?

We have always talked on different topics regarding Backlinks in SEO category of this blog. We have understood backlinks, their definitions, types and other major details which are important with respect to SEO (Search Engine Optimization). Now today we are going to discuss different Backlinks checker tools which are available online.


Why we need backlink checker tools ? 


Tuesday, 21 May 2013

How And Why to Add "Nofollow" Attributes to a Link ?

Browsing different SEO articles on backlinks, inbound links, linkjuice etc on different blogs, You definitely come across these two words which are “dofollow” and “nofollow” as these two are very common words related to SEO (Search Engine Optimisation). I have already covered this topic, If you are new to this kindly read the below article for your better understanding.



Monday, 20 May 2013

What is Linkjuice, And What are it's Importance ?

We have covered different topics in SEO such as Backlinks, Now we have to understand another important topic of SEO, that is Linkjuice. Most of us heard this word many times reading SEO blogs, forums, blogging related article but this word sounds very confusing, till we understand it, For understanding it you must have basic knowledge of backlinks, which you can get by reading my below post.
 Now let’s come to original topic that is “Linkjuice”.


Friday, 17 May 2013

Backlinks [Case Study]

In this Case Study article we are going to discuss different aspects of Backlinks such as it’s definition, importance, types and ways to build them. so, let’s start from backlink itself.




Backlinks- In one sentence ‘Backlinks’ are defined as incoming links to our blog(website) or webpage from other websites or blogs. When someone read your article and if he liked the same and produced a content related to the same topic on their blog, they links back that content to your webpage, that’s called a backlink. Still confused, Let’s take an example suppose Mr. A writes a post in his blog about Backlinks, When Mr. B goes through that article, founds good and publishes a content related to Backlinks on his own blog, giving the link of Mr. A post. Ex- source (blogution). If we assume bloglution as another website.



Different Types of Backlinks

First and foremost before link building we have to keep in mind that links coming to our site are quality backlinks or not. Many times i have written that quality is important rather than  quantity in terms of Backlinks building. Today we will discuss different types of Backlinks which are "dofollow" and "nofollow".It’s always advised that you should keep building quality dofollow backlinks regarding better SEO and traffic for your website.


Whenever you lands at any backlinks page, you heard many times the word “quality” before them. So, first let’s get understand what actually a quality backlink is ?


5 Best Ways to Build Quality Backlinks.

We all know that Backlinks are very important part of SEO (search engine optimization). If you are new to this, please read my previous articles about Backlinks and their importance, Now next we have to concentrate on best Backlinks building methods or how to build Backlinks ? If you Google for Backlinks building, you can find thousands of automated Backlink building tools which guarantees you to provide your blog with Backlinks as many as you want in a single click. Some of these automated tools are free and some are paid which provides you backlinks from high PR sites. Sites which provides free backlinks from poor sites decreses your rankings, hence deacreses your site performance. Different Paid sites which offers backlinks are detected and penalized by Google.



Now let’s discuss 5 easiest and best ways to build quality backinks:-
   

Thursday, 16 May 2013

Importance of Backlinks

Backlink, a word which is familiar to most of us, as when surfing blogging or SEO sites we definitely come across it but it sounds very confusing to many of us or we can say to newbie bloggers. I have already tried to make you understand what actually a backlink is ? in my previous article. Now we have to understand, what are their importance in SEO (search engine optimization) ?

let’s describe the importance of Backlinks

Sunday, 12 May 2013

What is Backlink ?

Friends today i’ll try to make you understand what actually a backlink is ? but in simple words. So, Let’s start.

Whenever we hover over internet for searching some SEO tips n tricks or reading ‘blogging’ and ‘how to blog article’ we always come to certain words which is very confusing when some pro or part time bloggers talk about Backlinks, Link juice, How to build backlinks etc. So first we have to understand about Backlinks, then their importance and finally how to build them. So, todays article will focuses only on definations and understanding of Backlinks.

Brief Description

Backlinks- In one sentence ‘Backlinks’ are defined as incoming links to our blog(website) or webpage from other websites or blogs. When someone read your article and if he liked the same and

Saturday, 22 December 2012

How to Submit Your Sitemap to Yahoo and Bing Search Engines

As we have previously discussed about How to submit sitemap to Google search, Today we are going to discuss about How to submit sitemap to Bing and Yahoo search.

Previously we have to submit sitemap to yahoo search through yahoo sitemap explorer and MSN didn’t require sitemap submissions but a year later Yahoo search and Bing search were merged. Bing search engine is a replacement of MSN by MICROSOFT. Now after their merger our job becomes more easy as we have to submit sitemap only to Bing search through Bing Webmaster tools sets it for two search engines i.e Yahoo and Bing both.


Friday, 21 December 2012

How to Generate a Sitemap for Wordpress Blog ? and Steps for Submitting it to Google.



When ever we discuss about SEO, sitemap strikes our mind as an important thing, I have already discussed in my previous post about ‘How to Generate Sitemap for Blogger (Blogspot) Blog ?’. Now the question arises that ‘How to generate sitemaps for Wordpress ?’. So that we can submit it to Major search Engine sites for better crawling and indexing of your website.


Answer for the above question is vey simple as many of us Know that this job can be done by many Plug-ins which are available in Wordpress.org SEO section. There are many plug-ins available but we will talk about most used.


( WORDPRESS PLUG-INS ARE NOT AVAILABLE FOR WORDPRESS.COM FREE USERS )