Okay, here are a few things.
1. Your form is missing its closing tag (it goes to chat.php)
2. It could be to do with the way you have the site programmed, but you do not have a doctype declared, the page is not wrapped in html tags, and there is no Head tag, but you have a title (which is supposed to be wrapped in head tags).
3. Put some spaces between the "W"s. Normal words have spacings between them and when I put spaces between them, they wrapped properly.
4. Put the text within the td's in paragraph tags.
5. There were a few stray closing tags
Here is the code I came up with that seems to work:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>King of lands - Inn</title>
</head>
<body>
<BODY link='#000000' alink='#000000' vlink='#000000'>
<table border="0" align=center cellspacing="0" width="510">
<tr><td background="./images/topbanner.gif" width="510" height="22" colspan="3"></td><td bgcolor="#0099FF" background="./images/tlcorner.gif" width="19" height="22"></td><td bgcolor="#0099FF" width="85" height="22"></td><td background="./images/trcorner.gif" width="19" height="22"></td></tr>
<tr><td bgcolor="#0099FF" width="22" height="22"></td><td width="456"><center><img src="./images/logo.gif"></center></td><td bgcolor="#0099FF" width="22" height="22"> </td><td bgcolor="#0099FF" width="19" height="22"></td><td>
<table border="0">
<tr>Hp: 100/100<td width='100' height='16' bgcolor='#000000'><table border='0'><td bgcolor='#00FF00' width='100' height='16'></td></tr></td></tr>
</table></table><hr>Mp: 20/20</td><td bgcolor="#0099FF" width="19" height="22"></td></tr>
<tr><td bgcolor="#0099FF" width="510" height="22" colspan="3"><center><a href="index.html">Home</a> - <a href="donate.html">Donate</a> - <a href="about.html">About</a> - <a href="login.html">Login</a> - <a href="register.html">Register</a> - <a href="./forum">Forums</a> - <a href="./userstats.php">Top 100 players</a></center></td><td bgcolor="#0099FF" width="19" height="22"></td><td><center><a href="shop.php"><b>>> KoL shop! <<</b></a></center></td><td bgcolor="#0099FF" width="19" height="22"></td></tr>
<tr><td bgcolor="#0099FF" width="22" height="110"></td>
<td height="110">
<center>
<p>
<h1>The town inn</h1> </center>
<br>Here you can rest a while or talk with other online players.
<hr>get room here..
<hr>[newacc] hi again D=<br>[newacc] i like pie =D<br>[newacc 2007/07/23] date test :O<br>[newacc 2007/07/23] ddddddddddddddddddddddddddddddddddddddddddddddddddddddd<br>[newacc 2007/07/23] WWWWWWWWWWWWWWW<br>[newacc 2007/07/23] WWWWWWWWWWWWWWWWWWWWWWWWWW<br>[newacc 2007/07/23 1185144504] time test<br>[newacc 12:57:52 Jul 23] hehehe<br>[newacc 12:59:31am Jul 23] meh<br>
[newacc 1:58:08am Jul 23] WWWWWWWWWWWWWW WWWWWWWWW WWWWW WWWWWWWWWW WW WWWWW WWWWW WWWWW<br>
</p>
<form action='chat.php' method='post'>
<br><input type='text' size='55' maxlength='55' name='cbox'><input type='submit' value='Say'>
</form>
<br><a href="townmap.php?t=1">Return to town</a>
<td bgcolor="#0099FF" width="22" height="110"></td><td bgcolor="#0099FF" width="19" height="22"></td><td valign="top">
<center>
<br>Logged in as:
<br><b>newacc</b><hr><a href="stats.php">My stats</a>
<br><a href="inv.php">Inventory</a>
</center>
</td><td bgcolor="#0099FF" width="19" height="22"></td>
<tr><td background="./images/botbanner.gif" width="510" height="22" colspan="3"></td><td background="./images/blcorner.gif" width="22" height="22"></td><td bgcolor="#0099FF" width="88" height="22"></td><td background="./images/brcorner.gif" width="19" height="22"></td></tr>
</table>
</body>
</body>
</html>
It is still a little messy, but it seems to work.
Let me know if it works out for you.
|