PDA

View Full Version : Skip To Content Links and SEO


DigiFundi
07-15-2005, 12:11 PM
Hi,

I was wondering if a Skip To Content link at the beginning of a page would have a similar effect to placing the content of a page before the navigation for a saerch engine to spider?

Could a skip to content link improve SEO compared to not having this option and forcing the spider to go through the navigation before content?

Thanks for your opinions.

Regards,

DigiFundi

seobook
07-16-2005, 04:10 AM
search engines read source code linearly I believe.

Google hired people from Mozilla and might be trying to adjust their algorithms to see how pages render though.

the jump to content link you stated probably would not have the effect you were suggesting.

you can use a blank table cell or css to put the content ahead of navigation

DigiFundi
07-16-2005, 05:13 AM
you can use a blank table cell or css to put the content ahead of navigation

Thanks for responding. I'm not sure what you meant by using a blank table cell?

DigiFundi

seobook
07-16-2005, 09:35 AM
<table cellspacing="0" cellpadding="5">
<tr>
<td>&nbsp;</td>
<td rowspan="2" valign="top"><p>Content</p></td>
</tr>
<tr>
<td valign="top"><p>Navigation</p></td>
</tr>
</table>

DigiFundi
07-16-2005, 11:26 AM
<table cellspacing="0" cellpadding="5">
<tr>
<td>&nbsp;</td>
<td rowspan="2" valign="top"><p>Content</p></td>
</tr>
<tr>
<td valign="top"><p>Navigation</p></td>
</tr>
</table>

That is clever. I never thought of it like that. Thanks for the tip ! :)

DigiFundi