Mkay, well I've been going out of my mind trying to figure this out.
I have the website set up like this
So basically, areas A, B, and I are just fine. However, I'm having trouble with the sides (C,E,G and D,F,H). What I'm doing now is basically this...
C and D:
And something similar for G and H:
And for E and F:
So the general idea is to basically define heights for C, D, G, and H, and to leave the heights for E and F undefined to allow that row to change size according to the content in block I. This works PERFECTLY in Firefox (link to preview), but really messes up in IE (another preview). It's almost as if IE is COMPLETELY ignoring the heights that I specify. I've tried simply putting "height" (in both the <td> tag and the STYLE), but still no dice.
Any solutions? Thank you very much.
I have the website set up like this

So basically, areas A, B, and I are just fine. However, I'm having trouble with the sides (C,E,G and D,F,H). What I'm doing now is basically this...
C and D:
HTML:
<td width="100" height="239" style="background-image:url(...IMAGE...);max-height:239px;width:100px;background-repeat:no-repeat;background-position:top;"> </td>
HTML:
<td width="100" height="239" style="table-layout:fixed;background-image:url(...IMAGE...);max-height:239px;width:100px;background-repeat:no-repeat;background-position:bottom;"> </td>
HTML:
<td width="100" style="background-image:url(...IMAGE...); background-repeat:repeat-y;"> </td>
Any solutions? Thank you very much.