I have the following html file I am trying to convert. Looks as it's supposed to on html,however, the top and bottom cells expand to who knows what when I convert it:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PostCard Test</title>
</head>
<body>
<table border="0" cellpadding="2" cellspacing="0" style="width: 396px; height: 306px; background-image:url(background.jpg); background-repeat: no-repeat;">
<tr>
<td colspan="3" style="height: 18px;"></td>
</tr>
<tr>
<td style="width: 18px;"></td>
<td bgcolor="#FFFFFF" style="height: 230px;" valign="top">Hello</td>
<td style="width: 18px;"></td>
</tr>
<tr>
<td colspan="3" style="height: 55px;"></td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PostCard Test</title>
</head>
<body>
<table border="0" cellpadding="2" cellspacing="0" style="width: 396px; height: 306px; background-image:url(background.jpg); background-repeat: no-repeat;">
<tr>
<td colspan="3" style="height: 18px;"></td>
</tr>
<tr>
<td style="width: 18px;"></td>
<td bgcolor="#FFFFFF" style="height: 230px;" valign="top">Hello</td>
<td style="width: 18px;"></td>
</tr>
<tr>
<td colspan="3" style="height: 55px;"></td>
</tr>
</table>
</body>
</html>