Monday, June 29, 2009

How to Make Post Date In Blogger Disappear

How to make post date in blogspot to disapper or just want to hide it? I'll show you the way. First go to Edit HTML page and search h2.date-header, then add visibility: hidden; inside the code. see example code below:

h2.date-header {
margin:.3em 0 0;
padding:0;
font-size:80%;
color:#777;
height: 0px;
visibility: hidden;
}

Clear, Simple Easy Search Engine Optimization (SEO) Meta Tags

This is the kind of technical stuff that can drive you crazy. In the Navy, we had to learn our aircraft systems inside and out. Imagine, in an aircraft like the E-2C Hawkeye, how complex that is! There were at least 7 main systems and then subsystems. Tons of technical jargon, crazy diagrams, and wires going everywhere. How do you even know what is important to know?

The same rings true with search engine optimization. It seems like there is so much to know, and you really don't know where to begin. You certainly may feel overwhelmed by the technical jargon of SEO (search engine optimization). Let's get started:

- The appropriate steps for meta tags

Getting optimized for search engine traffic is a process. There is no one single thing to do that suddenly turns on masses of targeted traffic or skyrockets you to the top of the search engine results. Completing your meta tags is just one of the things you should be doing for your search engine optimization efforts.

- Meta tags won't guarantee your way to top ranking in search engines.

What they do is provide a search engine spider (the digital robot reader) a way to have a good idea what they will find when they go to your web page. The meta tags also have fields to prevent your web page from being indexed. This can be useful as well.

Meta tags appear just after your (HEAD) tag on your page and then end with the closing (/Head) tag. This is all at the top of your HTML document. You can't break anything by changing the meta tags, just affect what search engines and people will get when they receive search engine traffic.

So the most important is the title tag

(title) Your Title | What's it About (/title)

That's it, tell your reader what it is all about. Use a key word phrase in your title. Make it relevant to your page content. Use of a significant keyword phrase tells the search engine what it is about, and is the first factor in deciding where to place your page in the searches.

Next is the meta tag description

(Meta name="description" content="a short description of the content of your page")

This short description is what you see in the search engine results under the title. It needs to be less than 160 words, and very relevant to your page content. It should contain at least one keyword phrase, two if possible (and it makes sense to the reader).

Do not leave your meta tag description empty. If you do, the search engine will pull random text from your web page to fill it in, and it may look totally irrelevant.

The final one I am going to discuss is the meta tag keyword

(Meta name="keywords" content="keyword phrase 1, keyword phrase 2, keyword phrase 3?)

There is a lot of debate as to whether this tag matters at all. The reality is, that the search engine crawler is primarily going to determine your content by the keywords used in the actual text found between the body tags ((body)(/body)).

This tag just reinforces what is found in the content. So put keyword phrases you focused on in your content within this tag. Don't waste your time filling it up with tons of keywords, especially if they aren't even used in your content. Nothing in this will improve your ranking. It just reinforces what is found.

OK, I lied, here is one more, the Meta Robots tag

(Meta name="robots" content="noindex")

This is how you tell the search index whether or not to index your page. By putting "noindex" in the field, you tell the search engines not to list your page. It does not stop a search engine from looking at your page. They will still look.

Leave this tag out if you want to be indexed.

Like in my many aircraft systems in tactical combat aircraft, there are many more little things in a meta tag. Honestly, they don't really matter much.

Don't get hung up or go haywire if you look at one web page and see tons of meta tags. Then you look at another web page source code and see different ones. There are still people that think this tons of meta data is making everything better for them. It isn't. So don't worry about it!

Article Source: http://EzineArticles.com/?expert=Wayne_Sharer

Sunday, June 28, 2009

Different Meta Tags For Each Post Blogger

What's Different Meta Tags For Each Post in Blogger?
By default if you're adding Meta Tags to blogger template (see add meta tags to blogger blog), then all of your page including home page will have the same Meta Tags Description. Is it wrong? No. It's just when you submitted your blog to google then you'll have duplicate meta tags description. different Meta Tags Description in each post will be more google friendly.

Step by Step to add Different Meta tags description For Each Post in your blogspot blog.

Step 1. Please do the previous entry here add meta tags to blogger blog

Step 2. Find code below
<meta content='Your home page description' name='description'/>
<meta content='your keywords, keywords1, keyword2' name='keywords'/>


Step 3. Add red code to it. This should be your final code.
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta content='Your home page description' name='description'/>
<meta content='your keywords, keywords1, keyword2' name='keywords'/>
</b:if>

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<meta expr:content='data:blog.pageTitle' name='Description'/>
<meta expr:content='data:blog.pageName + &quot;, your keywords, keywords1, keyword2 &quot;' name='keywords'/>
</b:if>


Step 4. Don't forget to change description and keyword to your own. save it and done.

The first code is Meta tags description and keywords for your blogspot home page and the second is different Meta tags description and keywords for each post in blogger.

So what you think? leave your feedback or if you have any problem than you can comments below.

Update : Step 3 containing all code you need to paste it to your template.
Change the blue text to your own homepage description and keywords. It will automatically created the meta tags.

Add Meta tags to Blogger Blog

What's the use of adding meta descriptions to Blogger?

I think It's very good for Search Engine Optimisation. We are going to add meta tags to blogger is to tell search engines what that page is all about. It will increase your page ranking in search engine.

Step by step to Add Meta tags to Blogger Blog.

Step 1. Install title tags optimized. Your code should be like this below.
<b:include data='blog' name='all-head-content'/>
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
<b:skin><![CDATA[/*


Step 2. Find this line
<b:include data='blog' name='all-head-content'/>


Step 3. add this code just below that line
<meta content='Your home page description' name='description'/>
<meta content='your keywords, keywords1, keyword2' name='keywords'/>


Step 4.
Your home page description = fill with your description
your keywords, keywords1, keyword2 = Change with your keywords

Step 5. Save it and done.

Saturday, June 27, 2009

Make Blogspot Title Tags More Seo Friendly

Who want to make their blog appear on top of search engine? probably everyone. Especially on google search. Having your blog number one on google will drive more traffic to your blogand of course more money will be on the way to you. Now i'll tell you how to make your blog search engine friendly. This is a conclusion after being a blogger at some time. All you need is to change how your blog appear on google. We can do that by adding title tag on your blog. Blogger.com by default don't come with search engine optimized (SEO). Now let's start it :

Step by Step to Make Blogspot Title Tags Seo Optimized.

Step 1. Find code below in your template :
<b:include data='blog' name='all-head-content'/>
<title><data:blog.pageTitle/></title>
<b:skin><![CDATA[/*


Step 2. Change the code with below code :
<b:include data='blog' name='all-head-content'/>
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
<b:skin><![CDATA[/*


Step 3. Save it and see your blog.

META Tags - What Are They?

META Tags are what you use to make the pages on your website more accessible to the search engines you are listed with. There are different types of META Tags, but the most popular types are META DESCRIPTION and META KEYWORDS. Here's how you formulate the proper META DESCRIPTION and META KEYWORDS to raise your status with search engines:

META KEYWORDS refers to the descriptive words you want linked to the content of your site. You want to use common descriptors and simple language when doing this. For example, if you have a website related to health & wellness products, you want to utilize commonly associated descriptors, such as: "healthy", "natural", "affordable", "family pricing", "innovative skin care" - you get the idea. The most important thing to make sure is that your META KEYWORDS are words that are interesting, attractive, common and above all, relevant. Do not repeat the same word more than three times, and it's more effective to leave commas out of the picture altogether.

META DESCRIPTION is the sum-up of what you want the description of your website to show up as. Take what you now know about META KEYWORDS and put together an attractive and sensible description. For example, a good META description for your health & wellness site might be: "Healthy home, natural products for your skin, body and wellness".

The title is the most important type of META Tag you will use. This is what will appear when people do a search engine check on your site. It is also what will influence them to either click onto your site or bypass it.

When you think META Tags, the most important question to ask yourself is this: what are the first few words that come to mind when you think of your site? These are the descriptors you want to include in your headings/tags so people will hit your site before they get to your competition.

There are other key elements to using META Tags, but the ones listed above are the most important. It may seem like a lot of work, but the more META Tags you can use, the faster your status will rise within search engines. Another important point to note is to get yourself linked up with as many search engines as possible. Be everywhere: saturate your market. This is the best way to make sure you're climbing the search engine ladders and getting the traffic to your website at an accelerated rate.

To Your Success,
Mark Baugh, http://ezinearticles.com

Privacy Policy

If you require any more information or have any questions about our privacy policy, please feel free to contact us by email at freeblogdirectory@gmail.com.

At metatagforblogger.blogspot.com, the privacy of our visitors is of extreme importance to us. This privacy policy document outlines the types of personal information is received and collected by metatagforblogger.blogspot.com and how it is used.

Log Files
Like many other Web sites, metatagforblogger.blogspot.com makes use of log files. The information inside the log files includes internet protocol ( IP ) addresses, type of browser, Internet Service Provider ( ISP ), date/time stamp, referring/exit pages, and number of clicks to analyze trends, administer the site, track user’s movement around the site, and gather demographic information. IP addresses, and other such information are not linked to any information that is personally identifiable.

Cookies and Web Beacons
metatagforblogger.blogspot.com does use cookies to store information about visitors preferences, record user-specific information on which pages the user access or visit, customize Web page content based on visitors browser type or other information that the visitor sends via their browser.

DoubleClick DART Cookie
.:: Google, as a third party vendor, uses cookies to serve ads on metatagforblogger.blogspot.com.
.:: Google's use of the DART cookie enables it to serve ads to users based on their visit to metatagforblogger.blogspot.com and other sites on the Internet.
.:: Users may opt out of the use of the DART cookie by visiting the Google ad and content network privacy policy at the following URL - http://www.google.com/privacy_ads.html

Some of our advertising partners may use cookies and web beacons on our site. Our advertising partners include ....
Google Adsense


These third-party ad servers or ad networks use technology to the advertisements and links that appear on metatagforblogger.blogspot.com send directly to your browsers. They automatically receive your IP address when this occurs. Other technologies ( such as cookies, JavaScript, or Web Beacons ) may also be used by the third-party ad networks to measure the effectiveness of their advertisements and / or to personalize the advertising content that you see.

metatagforblogger.blogspot.com has no access to or control over these cookies that are used by third-party advertisers.

You should consult the respective privacy policies of these third-party ad servers for more detailed information on their practices as well as for instructions about how to opt-out of certain practices. metatagforblogger.blogspot.com's privacy policy does not apply to, and we cannot control the activities of, such other advertisers or web sites.

If you wish to disable cookies, you may do so through your individual browser options. More detailed information about cookie management with specific web browsers can be found at the browsers' respective websites.