Forum Moderators: open
So it hit me, use css position to move it... .. not like totally to the bottom, but just a better spot..
I am using that "trick" on my site.
But wait! Please, let's not classify this as a trick. It has an official name...
CSS-P
All you are doing is absolutely positioning your content to be source ordered. It is not a trick. It is a design strategy which few are using at the moment. I've been trying to keep this CSS-P stuff under wraps, shhh! ;)
Take a look at your absolutely positioned content in Opera's User mode. That is pretty much what the spider sees.
Thanks for the term CSS-P.
You learn something new each day ...
And for those who hase not yet learned CSS there is the good old "table trick". Actually called "table trick".
<table>
<tr>
<td><!-- an empty table cell -->
</td>
<td rowspan="2">
The content of the page goes here.
</td>
</tr>
<tr>
<td>The navigation menu goes here.</td>
</tr>
</table>