Forum Moderators: coopster
Derek
Sadly I dont know an answer. You could simply hide it from the search engines altogether though :)
<table>
<tr valign="top">
<td></td>
<td rowspan="2">Content</tr>
<tr valign="top">
<td>navigation</td></tr></table>
if your site is CSS driven, you could absolute position your left column:
#content {
margin-left:200px;
}
#navigation {
position:absolute;
left:0;
top:0;
width:200px;
}
<div id="content">content</div>
<div id="navigation">navigation</div>
But this is not PHP related. Better ask in the CSS forum [webmasterworld.com]..