Macky
Gruntled Member
Ok, I'm going to reopen this one.
Apparently the code I used is not xhtml compliant:
Code:<table> <divstyle="float: left;">...</div> <divclass="custom-page-title">...</div> <div>...</div> </table>
Any ideas what I need to do to make it compliant?
Thanks,
Joe
Table tags cannot wrap div tags. They can only parent <th> or <tr> tags.
You either need to lose the table and lay the document out properly, or wrap the divs in table row and cell tags.
Code:
<table>
<tr><td>
<divstyle="float: left;">...</div>
<divclass="custom-page-title">...</div>
<div>...</div>
</td></tr>
</table>