Okay, here is an annoying issue that I can't seem to overcome.... Basically I have the following layout table:
Basically the area below marked with **** is supposed to be a dynamically sized cell (based on body length) that has a background that matches sidebar.php and continues to the bottom of the page even with footer.php.
All that displays is a little background graphic at the bottom left (in Dreamweaver it shows it correctly)...Help -- what am I doing wrong...
Sorry so long winded....
<tr>
<td colspan="2">
<? include("header.php"); ?>
</td>
</tr>
<tr>
<td width="25%">
<? include("sidebar.php"); ?>
</td>
<td width="70%" rowspan="2">
body goes here
</td>
</tr>
****THIS IS WHERE I NEED HELP**
<tr>
<td width="25%" rowspan="2" background="/images/image.gif">
</td>
</tr>
<tr>
<td width="70%">
<? include("footer.php"); ?>
</td>
</tr>
</table>