Hi
I am currently rebuilding a website that uses a table layout and want it to make it with layers and css.
The problem I am having is with the header. The header is currently a table at 100% width with 3 cells.
[left frame][logo 800px][rightframe]
<table border="0" width="100%" height="600" cellpadding="0" cellspacing="0">
<tr>
<td background="images/background_left.jpg"> </td>
<td width="800" valign="top">the header content</td>
<td background="images/background_right.jpg"> </td>
</tr>
</table>
The center cell, the logo banner, is should always be 800px. The left and right cell have a background that matches the ends of the logobanner.
Now the question would be how I can solve this with css ?
Thanks