outdoorxtreme1
04-04-2007, 07:54 AM
I am trying to make a table that is 800px and have background pics in fixed width table data cells on the left and right of the 800px table. I am having a problem keeping them together when screen resolution changes. I always want the 3 to stay together and have only the table data cells that have the to change width when the resolution changes. What am I doing wrong?
<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td width="15" style="background:fixed url(/images/PWPLeftFade.gif);"></td>
<td>
<!-- header //-->
<table border="0" width="800px" cellspacing="0" cellpadding="0">
<tr>
<td>
</td>
</tr>
</table>
</td>
<td width="15" style="background:fixed url(/images/PWPRightFade.gif);"></td>
<td> </td>
</tr>
</table>
</body>
<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td width="15" style="background:fixed url(/images/PWPLeftFade.gif);"></td>
<td>
<!-- header //-->
<table border="0" width="800px" cellspacing="0" cellpadding="0">
<tr>
<td>
</td>
</tr>
</table>
</td>
<td width="15" style="background:fixed url(/images/PWPRightFade.gif);"></td>
<td> </td>
</tr>
</table>
</body>