I have some text in the top left hand corner of a table cell, which was working ok until I put the DOCTYPE statement in my code. It now drops the text down in Firefox, but is still fine in IE. If I remove the H1 tag or the DOCTYPE declaration it displays correctly again.
I know I could just lose the H1 and increase the text size, but I would like to keep the H1 for SEO.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>New document</title>
</head>
<body>
<table width="770px" border="1">
<tr height="120px" width="400px" >
<td valign="top" ><h1>>Widgetguide.com</h1></td>
</tr>
</table>
</body>
</html>
Anyone have any ideas to get round this?
Thanks