ok, i have a tbale, if i set its width, it looks messed up in mozilla, and fine in IE.
if i dont set the width, it looks fine in mozilla, but not in IE.
I was wondering if anyone knows a way around this.
here is the code for the page:
the line broken off on its own is the trouble line
Thanks,
if i dont set the width, it looks fine in mozilla, but not in IE.
I was wondering if anyone knows a way around this.
here is the code for the page:
PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="5">
<?php include "title.php" ?>
</td>
</tr>
<tr>
<td width="198" rowspan="101">
<?php include "incfiles/leftmenubar.php" ?>
</td>
<td width="59" height="50"><img src="menubar/topleft.gif" ></td>
<td width="479" background="menubar/topmid.gif"> </td>
<td width="59" height="50"><img src="menubar/topright.gif"></td>
<td width="198" rowspan="101">
<?php include "incfiles/rightmenubar.php" ?>
</td>
</tr>
<tr>
<td background="menubar/midleftlight.gif" width="59"> </td>
<td bgcolor="#69ABFF"> </td>
<td background="menubar/midrightlight.gif" width="59"> </td>
</tr>
<tr>
<td background="menubar/midleft.gif" width="59"> </td>
<td bgcolor="#0078C7"> </td>
<td background="menubar/midright.gif" width="59"> </td>
</tr>
<tr>
<td width="59" height="50"><img src="menubar/bottomleft.gif"></td>
<td background="menubar/bottommid.gif"> </td>
<td width="59" height="50"><img src="menubar/bottomright.gif"></td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><?php include "incfiles/footer.php" ?></td>
</tr>
</table>
</body>
</html>
the line broken off on its own is the trouble line
Thanks,








