Add Meta Description Tags to Blogger

Meta Tags are HTML elements used to provide structured metadata about a web page. Such tags are placed in the head section of an HTML document and Search Engines might use this data to display the search snippet when they display a page from your blog. Most of the Social Sharing Tools like the Facebook Share or the Google Plus buttons will pick up this meta description to create the snippet which gets shared to the Social Networks.
 

How to add Meta Description Tags

Blogger has rolled out an array of SEO features and now adding Meta Tags has become so easy. You can do it easily from the Blogger’s User Interface without doing much of Template Editing or pulling your hair. So here is how to do it
  1. Go to Settings > Search Settings and Enable Meta Tags. In the Text area give a 150 character description which will describe your Blog. This text might be used by Search engines when your Blog’s home page is displayed on Search Engines. Here is the snippet that I have given “Blogger Widgets provides you the best quality blogger tutorials.It also provides you with free blogger widgets and  gadgets to build a better blog.” Meta Tags For Blogger
    Meta description Tags displayed on Google
  2. Now when you make a Post, you can set the Meta Description from the Post Editor’s Post Settings  Sidebar. Meta description Tags For Blogger
    You can always edit the Search Description for existing posts as well
  3. If you are having a custom template, make sure that the following line of code is present in your template. To do that go to Template and Proceed to Edit HTML . Find
    <b:include data='blog' name='all-head-content'/>
    If it's not present, add it just before </head>
  4. That's It you have done it.
More

Custom 404 Error Pages for Blogger

"The 404 or Not Found error message is a HTTP standard response code indicating that the client was able to communicate with the server, but the server could not find what was requested." In simple words the page that will be displayed when the actual page is not found is called a 404 Error Page. Till now Blogger’s error page was a plain old design with more of orange in it and was not customizable. Now Blogger Error pages use the same template . This would help template designers in making up custom 404 Pages.This tutorial will help you in setting up a Custom 404 page for your Blog.
By Default, your Blogger Error page will display this error message
custom 404 page for blogger
You can Change this message to something else from the Blogger Settings.
The option is there at Settings > Search preferences > Custom Page not Found
blogger-custom-404-message
If you want more than just a message, then we will have to fill up this text area with some HTML Code.. This is how my Error page Looks like

Instructions

  1. Login to your Blogger account and go to the Template page and proceed to Edit HTML
  2. Click on the Expand Widget Templates Check box so that your entire template comes up
  3. Now Look for </head> and immediately before that paste this snippet
    <b:if cond='data:blog.pageType == "error_page"'>
    <style type="text/css">
    .status-msg-wrap {
    font-size: 100%;
    margin: none;
    position: static;
    width: 100%;
    }
    .status-msg-border {
    display:none
    }
    .status-msg-body {
    padding: none;
    position: static;
    text-align: inherit;
    width: 100%;
    z-index: auto;
    }
    .status-msg-wrap a {
    padding: none;
    text-decoration: inherit;
    }
    </style>
    </b:if>
    This code snippet will reset the default styling given to the Blogger Message Wrapper.
  4. Save the template and go to a page on your blog which doesn’t exist.
  5. You should be able to see the change now. The grey background and the border around the 404 status message would no longer be there.
  6. Now Let’s see how we can improve the look and feel of our 404 page. I would suggest you to use inline CSS styles to improve the look and Feel of your 404 message.Here is a sample HTML template which you can paste into the text box at Search preferences > Custom Page not Found.
    <h3>Your requested page was not found</h3>
    <p>Sorry, we cannot find the page that you are looking for. It might have been removed, had its name changed, or is temporarily unavailable.<br/>
    Please check that the Web site address is spelled correctly.</p>
    <b>Other things to try:</b><br/>
    <ul>
    <li>Go to our <a href="/">home page</a>, and use the menus or links to navigate to a specific post.</li>
    <li>
    <form method="get" action="/search">
    <table width="100%">
    <tr>
    <td><input type="text" style="width:95%;padding:2px;" value="Search this blog.." onfocus="if (this.value == &quot;Search this blog..&quot;) {this.value = &quot;&quot;}" onblur="if (this.value == &quot;&quot;) {this.value = &quot;Search this blog...&quot;;}" name="q"></td>
    <td><input type="button" Value="Search"></td>
    </tr>
    </table>
    </form>
    </li>
    </ul>
  7. It will give you something similar to my 404 page.
  8. If you are creative, you can add more stuff to the 404 pages. You can find a list of really creative 404 pages on HongKiat for inspiration

Detecting an Error Page

Blogger has introduced a new page type called "error_page" and you can detect it using b:if conditional tags.
The following condition checks if a page is an error page or not.
<b:if cond='data:blog.pageType == "error_page"'>
This is an Error Page
</b:if>

Changing the Error Page Title

By default the title of the Blogger Error Page is your Blog Title. If you want to change it to something else, you can Edit your template and change
<title><data:blog.pageTitle/></title>
to
<b:if cond='data:blog.pageType == "error_page"'>
<title>Page Not Found</title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
If you are using my Title Tag Hack or derivatives of that available on the internet, then you will have to change
<!-- Start www.bloggerplugins.org: Changing the Blogger Title Tag -->
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/><b:if cond='data:blog.pageName'> - </b:if><data:blog.title/></title>
</b:if>
<!-- End www.bloggerplugins.org: Changing the Blogger Title Tag –>
to
<!-- Start www.bloggerplugins.org: Changing the Blogger Title Tag -->
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<title><data:blog.pageTitle/></title>
<b:else/>
<b:if cond='data:blog.pageType == "error_page"'>
<title>Page Not Found</title>
<b:else/>
<title><data:blog.pageName/><b:if cond='data:blog.pageName'> - </b:if><data:blog.title/></title>
</b:if>
</b:if>
<!-- End www.bloggerplugins.org: Changing the Blogger Title Tag –>

As I always say, if you get into troubles, you can use the comment form , Forum or our Facebook Wall :)
I’m sure that this is the first tutorial on Blogger 404 Pages on the Internet. Do share and keep us live :D
More

Gadgets for Blogger Dynamic Views

Blogger has introduced 6 awesome Gadgets for the Dynamic Views/Dynamic View Templates. The Widgets appear as a Floating Dock and expands when the user hovers over it.  These Gadgets matches up with the look and feel of the CSS3 powered Dynamic Views.
Gadgets for Blogger Dynamic Views

These are the list of Gadgets that Blogger has added to Dynamic Views
  1. Blog Archive
  2. Followers
  3. Labels
  4. Profile
  5. Link List
  6. Subscribe
You would already be familiar with the first 5 gadgets, but these are pretty different from the normal Gadgets. These are interactive and open up when the user hovers over the dock thereby saving some valuable space. The last gadget in the list(Subscribe) is a new Dynamic View Gadget which would be shown if you have added the Follow by Email or Subscription Gadget.

How to add these Gadgets to Dynamic Views ?

You just have to go to the Layout Page and add these Gadgets as you normally do. The docked gadgets will appear on your Dynamic view template or on your Blog’s Dynamic View .
I’m not using a Dynamic View Template, but you can see the new Gadgets in action on my Blog’s Dynamic View Pages. You can check out the demo at
http://www.bloggerplugins.org/view
If you want to see how these would look like on your blog. just append view to your blog’s main URL.
e.g : http://www.bloggerplugins.org/view
If you are still new to Dynamic Views, do check out this video
More

A Good Template Makes Your Site More Successful



Templates are the most important part of a successful website. Every successful site on the web has some sort of overall design structure, which adds to its beauty. A good structural design of headers, footers, navigation, and good content adds a user-friendly base to get around even in complicated sites. Fortunately, you can find a number of pre made templates that will set up a base for your website and all you need to do is enter your personalized text to make a site, which you desire. Many templates can be found free of cost on the internet.

Now, what is a Template? It is a page for your website that needs to be created only once which includes all the link structure information and designs with the content of each page either left blank or right blank. You then can make a copy of your desired template for each page and can fill in the content, rename it. Browsing a site which has different colour pages and has navigation links in different places can be frustrating at times.

So where to look for free templates that will give you a start? One place where you can find good templates easily is right in your web hosting panel. Most of the web hosts today use the common interface software called cPanel. It includes various types of different template options right in the site builders tab. No pre-existing knowledge is needed to work in cpanel as some of the options even have step by step methods on how to create. You just have to follow the steps and a template will be created for you according to your desire.

If you want your own custom template with some specific likings and features then there are many template files directly available for download, which will give you the type of template, which you can edit, and fill in just like any other HTML file.

Both free and pay templates are available on the template sites. You can simply Google "website template" or "free website templates" and you will have a large number of options. Usually the pay ones are designed in a better way, and they have a very less probability that other sites have the same template as that of yours.

Wordpress blog is another great option to build a site, which nowadays is becoming one of the most popular methods of site building. They are very simple to create. It just uses small form in your web-hosting panel and once you have the access to the Wordpress admin dashboard, it has a very easy way to find "theme" area that has hundreds of free blog templates to choose from and these templates are very adaptable to almost any site that you desire for.

Article Source : www.articlesnatch.com
More

Free Blog Templates for Blogger

Blogging may be the buzz word for the last five years, but it actually has been around since the internet started to spread across the country becoming an essential part of every US home. Even before the emergence of web 2.0, blogging was already meant to not only provide information, but also to share the opinions and thoughts of the bloggers. And today, blogging has evolved so much that stuff like "free blog templates for blogger" are one of the most popular searches made each day.

For the better part of the last decade, the number of bloggers has risen dramatically and this is partly due to the availability of free blog hosting sites like Blogger. Now owned by internet giant Google, Blogger is one of the earliest free blogging sites to come out and was purchased by Google when the blogging industry started to explode. After the transition of ownership, Blogger integrated numerous innovations which made it easy for anyone to use and opened up the use of premium features that were previously reserved for those willing to pay for their use.

One of these features, which also received a major revamp, was its template editing feature. It introduced an extremely user friendly editing option which allowed the user to customize the layout and the page elements of your blog. With just a few clicks you can change the fonts, colors, sidebar contents, header, and all the other options you may want, especially with revenue generating ads like AdSense.

If you really want to have a more personalized look for your Blogger account, it's even possible to download free blog templates for blogger and customize it even further. These free templates are already great as they come, but to avoid any chance of another blogger site having downloaded the same template and using it, you can just treat the template as an empty canvas and from there customize it to further make it your own.

The best thing about free blog templates for blogger is the fact that they are free, plus, if you don't have the skills to create your own template, this will save you a lot of time in learning how to do it and starting from scratch in building one. You also save money from having to purchase one or hire the services of a template designer to create a customized template for you.

Article Source: EzineArticles.com
More

Basic Uses And Guides To Modifying Blogger Templates



Bloggers are people who create blogs. Templates are ready to use documents or applications specifically designed for easy use or modification. So a blogger template by definition, is an application that is made to be used or modified by bloggers for creating a blog. A lot of these templates are available in the internet. Some are free while others are for sale. These blogger templates are beneficial to people who wouldn't want to pay big amounts to hire website designers or professional blog designers. This is a very efficient way to minimize your cost while maximizing the opportunity for a good advertisement.

A lot of companies nowadays turn to the internet to promote their products. It promotes savings and at the same time, the internet can reach a wider range of audience. Almost everyone in the world has access to the internet, no wonder millions of blogs are created everyday. Companies capitalize on this trend. Advertising in the internet through blogs is just a fraction of the cost compared to other means of advertising.

If you are a blogger looking for a template, there are several things that you should consider. You need to take into consideration if the template fits your objective on why you are creating a blog. You consider as well if it's easy to modify to fit the needs of your blog. Also you must see if the applications on the template are easy to use and is compatible to other applications readily available to you or through the internet.

Always remember that your web template should always match your blog design so that it will attract viewers and visitors. This will ensure that your blog will be frequently visited by internet users. There are thousands of free to download blogger templates in the internet; you won't run out of new designs to choose from. And the steps to modify these templates are available upon downloading. The steps generally apply to all templates. It involves an easy series of copying and pasting of codes. You simply supply the template with the information and it will automatically format based on your desired outcome.

People want constant changes, they want continuity and won't settle for old and outdated blogs. When you enter a blog that is boring, unattractive and lifeless, the first thing that comes in mind is that who ever owns this site has nothing new to offer, way past prime or is outdated and don't even have money to pay for a designer, or in short you get turned off and won't even click on links and simply exit the site. When that happens, the owner loses the opportunity to sell and prosper. That's why a good, updated and attractive blog is needed especially if it is used for business as it reflects good standing.

Article Source : www.articlesnatch.com
More

How to Apply A WordPress Theme



One of the biggest advantages to WordPress is the easy to use theme system. This makes changing your blog or websites design a really easy task. Best of all, many themes are available for free of charge. The key is to learn how to use the theme system so you do not waste your time trying to figure out why your theme is not working.

If you want to apply a WordPress theme, the first step is making sure you have the theme installed. There are two different ways that a WordPress theme can be installed. The first option is to install it manually by uploading the theme folder to your themes directory. This requires some knowledge of FTP and web directories.

The second option is to use the build in theme uploader, which can be accessed from directly in the WordPress administration panel. To get started, just browser to the appearance section in WordPress and click on the themes section. One in here, you can just click on the add new theme button to get started. You can either search for a theme in the directory or choose the zip file you downloaded from somewhere else on the internet.

Regardless of the way you choose, WordPress will automatically install the theme for you and place it in the correct folder. Once this is done, you are then ready to apply the WordPress theme.

Guess what? Activating the theme is even easier than installing it! All you have to do is look at your installed themes and choose the one you want to use. Then just use the activate link to automatically apply any given them. Within a matter of seconds, your entire blog or website layout will completely change based on the theme you are using. Talk about an easy way to design websites!

Article Source: EzineArticles.com
More

Ultimate Blogging Theme - My Favourite WordPress Theme

Recently I have been working on to change the color of the title name and fonts of my blog and I tried several plugins, but I am not satisfied with the results. Fortunately I found a very Google friendly WordPress theme, named "Ultimate Blogging Theme". I love it.

Firstly, I found Ultimate Blogging Theme is very convenient. I just need to choose my blog layout that I like, color scheme, advertising position, social bookmarking, etc. Actually I changed the font size, color of blog title, description, header box heading, content body and others from the fonts section in UBT headquarters easily. And when I add a new page, it can be added into navigation menu automatically.

The second is that Ultimate Blogging Theme is simple and easy to use. Setting up an eye-catching blog looks like a piece of cake by following the Ultimate Blogging Theme setup video. The step-by-step video tutorial shows how to install UBT, how to choose blog layout, where to pick social bookmarking, and how to set up the widgets, and so on. I just followed and completely set up the theme in a few minutes.

And I also appreciate the advertising placements have already been there. Ultimate Blogging Theme has been developed by a well-known successful kid blogger Carl Ocab. He has tested and found the best ads placements on blogs, and in these designed places visitors tend to click through ads. And these places are header ad, content ad, middle ad, footer ad. I put in my ads in these places directly for they have suggested sizes already.

The other thing I like Ultimate Blogging Theme is that the purchase is one time payment and it offers me free updates in my life time. This theme has already included custom style sheet and custom functions, so when I want to update in the future, my customization will not lose. It has been tested and proven to produce the best results on-page SEO.

So if you are looking for a Wordpress theme simple and easy to use, I highly recommend you take Ultimate Blogging Theme a shot. If you try to get your blog optimized and give you a lot of free traffic, you can click here to get more information on this Google friendly WordPress theme.

Article Source: EzineArticles.com
More
 
Support : Your Link | Your Link | Your Link
Copyright © 2013. bbc world - All Rights Reserved
Template Created by Creating Website Edited by Kompi Ajaib
Published by Mas Template Proudly powered by Blogger