Posts: 77
Location: TropiCalifornia
|
Try this it should work, layout tables can create a mess, determining what you need is superior (IMHO) to allowing Dreamweaver to do it.
<!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="750" border="0" align="center" cellpadding="2" cellspacing="0">
<tr>
<td width="22%" rowspan="2">Bear goes here</td>
<td colspan="2">Banner Goes here</td>
</tr>
<tr>
<td width="56%">Image1 here - Image2 here</td>
<td width="22%"> </td>
</tr>
<tr>
<td valign="top"><table width="170" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="3">Left Navigation</td>
</tr>
</table>
</td>
<td>Body Goes Here</td>
<td valign="top"><table width="170" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Right Navigation</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Skip Wiley
|