View Single Post
Old 01-19-2009, 03:13 PM  
leek
Confirmed User
 
leek's Avatar
 
Join Date: May 2008
Location: Charlotte, NC
Posts: 342
Quote:
Originally Posted by Deej View Post
its lunch time and Ive have spent too much time aside from my actual work in these CSS threads...
Your argument is based upon valid uses of CSS (aesthetics), however - aesthetics does not equate to proper SEO. Your CSS positioning (to place content higher in the markup, not not so visually) will eventually be penalized so I will not consider this a valid point.

Quote:
Originally Posted by AlienQ View Post
<table>
<tr>
<td>navigation</td>
<td>content area</td>
</tr>
<tr>
<td>footer stuff</td>
</tr>
</table>

Or...

<table>
<tr>
<td>Content Area</td><TD>Navigation</TD>
</tr>
<tr rowspan=2>
<td>footer stuff</td>
</tr>
</table>

Simplify the order of content with good structure along those lines.
If you want to stick with up to date standards, this is completely unacceptable. It is syntactically valid, but not semantically. The rule is: only use tables for data that should go into a table (think spreadsheet).
leek is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote