Forum Moderators: open
my site is currently structured like this (simplified):
<table>
Headings, logo etc.
</table>
<table>
//left column
<td>
navigation with javascript
poll
wheatherforecast
</td>
//right column
<td>
main content
</td>
</table>
That results in a sourcecode seen by google where all the code for navigation, poll an wheatherforecast (about 12k)comes before the main content (about 10k/page) google should index.
Now I wonder if it would be better to move navigation etc. to the right so that main content would be the first google indexed.
Any ideas?
Thanks very much for your help,
Mathias
Welcome to WebmasterWorld [webmasterworld.com]!
Yes, it would be much better to get your content up nearer the top.
You could also use absolute-position <divs> with CSS, or try the plain-HTML "table trick" (I hope I typed this right) :)
<table>
Headings, logo etc.
</table><table>
<tr>
// left column top
<td>
empty cell
</td>
// main content
<td rowspan=2>
main content
</td>
</tr>
<tr>
//left column bottom
<td valign="top">
navigation with javascript
poll
weatherforecast
</td>
</tr>
</table>
the "html-trick" seems to be a real good solution for my site since navigation on the right is very uncommon.
I got a lot of great information from this forum. Started using <h1> tags, keywords in internal links and rewriting urls from?page=widget1&sub=widget2 to widget1_widget2.html.
I'm pretty sure it will help rankings a lot, when the next update is on its way.
Thanks,
Mathias
Navigation doesn't contain any keywords except anchor text.
So I'm pretty sure moving navigation to bottom of source code won't hurt rankings.