Forum Moderators: not2easy
Here's some simplified mark-up. I just want some ideas on the best way to get this task done.
<table>
<tr>
<td id="top"></td>
</tr>
</table>
<table>
<tr>
<td id="left><div id="test"><img src="blah.gif></div></td>
<td id="center></td>
<td id="right></td>
</tr>
</table>
#test {position: relative; bottom: 0; margin: 0;}
and placing the div in the left hand column?
How wrong is placing the image in a div that looks like this:#test {position: relative; bottom: 0; margin: 0;}
More or less completely wrong, given what you're trying to do ;-)
Relative positioning [w3.org] shifts the normal position of an element. So by setting 'bottom' to '0', you have instructed the browser to change the 'natural' position of the element by zero units.
Try changing the word 'relative' to 'absolute' (see absolute positioning [w3.org]) and see if the results are closer to what you expected.
-b