 |
|
| Google Meta Tags-Problem |
« View previous topic :: View next topic » |
| Author |
Message
|
| waynelyp90 |
Posted: Thu May 24, 2007 8:45 pm Post subject: |
|
|
 New Member

Joined: Dec 04, 2006 Posts: 17 Location: Malaysia
|
Can you let us know the URL of your blog so that someone out here could have a check on your metas...  _________________ My blog: http://yp90.blogspot.com |
|
| Back to top |
|
 |
Sponsored Ads
|
 |
| Shawn |
Posted: Thu May 24, 2007 9:58 pm Post subject: |
|
|
 Site Developer

Joined: Sep 06, 2006 Posts: 327 Location: Canada
|
Without a Blog URL there is no way for us to pin point the problem!
It could be an improper nested meta tag, you could have a noarchive tag so the spider bot can't access your blog, or the meta tag is not XHTML compliant..which is the support doctype for most blogspot blogs
Please provide the URL so we may better assist you!
Shawn DesRochers _________________ | Affordable Web-Hosting | FREE Blog Directory |
PC Windows Tips |
Ultra Game Play |
|
| Back to top |
|
 |
| Shawn |
Posted: Fri May 25, 2007 10:58 am Post subject: |
|
|
 Site Developer

Joined: Sep 06, 2006 Posts: 327 Location: Canada
|
I assume you referring to Google sitemaps when you say verified?
If its Google sitemaps which I assume it is, the problem is your trying to use the same identical code for each blog...
| Code: | | <meta content='9hv2RZ5cHWhMBpiIDPNy8UZ371nJJDTKpYP7HqWzP74=' name='verify-v1'/> |
In Google sitemaps, you must add each site to your account, then under your account click the domain you wish to verify and the method.
Google sitemaps will then give you a new verify code for that blog to be used....
Google sitemaps won’t let you verify 2 web domains or in this case blogs using the same verify code for each as the one URL is already using it...
Try adding the other domain to your Google sitemaps account, which I think you already have, but select the domain you wish to verify and the method and follow through the process again...
Also your meta tags are in a mess, < title > < / title> tags should be at the top then the meta content tags and last but not least the link to style sheets should be the very last ones in that group
Example you have this
| Code: | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html 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>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='true' name='MSSmartTagsPreventParsing'/>
<meta content='blogger' name='generator'/>
<link rel="alternate" type="application/atom+xml" title="They Are our Children - Atom" href="http://theyareourchildren.blogspot.com/feeds/posts/default" />
<link rel="alternate" type="application/rss+xml" title="They Are our Children - RSS" href="http://theyareourchildren.blogspot.com/feeds/posts/default?alt=rss" />
<link rel="service.post" type="application/atom+xml" title="They Are our Children - Atom" href="http://www.blogger.com/feeds/3158068610376620881/posts/default" />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.blogger.com/rsd.g?blogID=3158068610376620881" />
<title>They Are our Children</title>
<meta content='5 days' name='revisit-after'/>
<meta content='Chidrens support site' name='classification'/>
<meta content='Ways of aiding and supporting unfortunate children everywhere' name='description'/>
<meta content='TRUE' name='MSSmartTagsPreventParsing'/>
<meta content='children,support, give, caring, responsibility ' name='keywords'/>
<meta content='FOLLOW' name='robots'/>
<meta content='Global' name='distribution'/>
<meta content='Safe For Kids' name='rating'/>
<meta content='Marie Marinaccio' name='author'/>
<meta content='danrus2@verizon.net' http-equiv='reply-to'/>
<meta content='English' name='language'/>
<meta content='Public' name='doc-type'/>
<meta content='9hv2RZ5cHWhMBpiIDPNy8UZ371nJJDTKpYP7HqWzP74=' name='verify-v1'/> |
It should be like this for proper nesting of meta tags
| Code: | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html 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>
<title>They Are our Children</title>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='true' name='MSSmartTagsPreventParsing'/>
<meta content='blogger' name='generator'/>
<meta content='5 days' name='revisit-after'/>
<meta content='Chidrens support site' name='classification'/>
<meta content='Ways of aiding and supporting unfortunate children everywhere' name='description'/>
<meta content='TRUE' name='MSSmartTagsPreventParsing'/>
<meta content='children,support, give, caring, responsibility ' name='keywords'/>
<meta content='FOLLOW' name='robots'/>
<meta content='Global' name='distribution'/>
<meta content='Safe For Kids' name='rating'/>
<meta content='Marie Marinaccio' name='author'/>
<meta content='danrus2@verizon.net' http-equiv='reply-to'/>
<meta content='English' name='language'/>
<meta content='Public' name='doc-type'/>
<meta content='9hv2RZ5cHWhMBpiIDPNy8UZ371nJJDTKpYP7HqWzP74=' name='verify-v1'/>
<link rel="alternate" type="application/atom+xml" title="They Are our Children - Atom" href="http://theyareourchildren.blogspot.com/feeds/posts/default" />
<link rel="alternate" type="application/rss+xml" title="They Are our Children - RSS" href="http://theyareourchildren.blogspot.com/feeds/posts/default?alt=rss" />
<link rel="service.post" type="application/atom+xml" title="They Are our Children - Atom" href="http://www.blogger.com/feeds/3158068610376620881/posts/default" />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.blogger.com/rsd.g?blogID=3158068610376620881" /> |
Shawn DesRochers  _________________ | Affordable Web-Hosting | FREE Blog Directory |
PC Windows Tips |
Ultra Game Play |
|
| Back to top |
|
 |
| Shawn |
Posted: Fri May 25, 2007 12:11 pm Post subject: |
|
|
 Site Developer

Joined: Sep 06, 2006 Posts: 327 Location: Canada
|
Not a problem tonynme, really that’s why I gave you the proper meta tags for your one blog so you just have to past them in...
Truth be told I am not a blogger, I own a Free blog directory however.
I am a certified Web Developer / Programmer for the last 12 years and own a several websites!
Your blogs look good, their clean and simple. They both load very fast which is a nice treat as so many other bloggers overload their pages with to many graphics, advertising or they have to many post set to show...
I am on an ADSL connection and they both loaded around 0.15 mil seconds which is great, your page size is also perfect for search engine optimization as Google recommends keeping you’re pages under 50 KB.
The color(s) are also pleasant, the font is easy to read and you’re doing a great job, especially for being a new blogger!
Remember its always a learning curve when trying something new, but we are here to help when you need us!
Keep up the great work and keep on blogging!
Shawn DesRochers  _________________ | Affordable Web-Hosting | FREE Blog Directory |
PC Windows Tips |
Ultra Game Play |
|
| Back to top |
|
 |
|
|
|
 |
|
Page 1 of 1 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|