Page is a not externally linkable
martinibuster - 6:50 pm on Sep 1, 2010 (gmt 0)
It's probably showing because it's in the wrong place. That should be at the top of the code. If it's showing then it may be because that part of the template is outside of a previous head section. Here is the basic structure as it should be:
Example A
<doctype>
<html>
<head>
</head>
<body>
<table>
<tr>
<td>
</td>
</tr>
</table>
</body>
</html>
Here is an example of how what you are seeing can happen:
Example B
<doctype>
<html>
<head>
</head>
<body>
<doctype>
<html>
<head>
</head>
<table>
<tr>
<td>
</td>
</tr>
</table>
</body>
</html>
Example A demonstrates the basic structure your code should have. Examine your code and find where it deviates from that structure. Then please let us know what you find. ;)