you have to be tricky with that ...
if you use an absolute height of the table (100%), all cells will become
bigger ....
so you define the hight of each cell as you want it and in the one of
the td you set the height also 100%
here's your code:
<table width="100%" height="100%" border="0" cellpadding="0"
cellspacing="0">
<tr>
<td class="logo"> </td> <-- height defined with css
</tr>
<tr>
<td class="logo2"> </td> <-- height defined with css
</tr>
<tr>
<td class="logo3"> </td> <-- height defined with css
</tr>
<tr>
<td class="navbar"> </td> <-- height defined with css
</tr>
<tr>
<td height=100%> </td> <-- set height 100%
</tr>
<tr>
<td height="223"> </td> <-- height defined
</tr>
<tr>
<td height=xy> </td> <-- need to define height
</tr>
</table>
={ Advocated }= schrieb:
> Hey there, on my page i am using a few few different cells, For instance i
> have 3 cells going down the page, like:
> -------- a
> -------- b
> -------- c
> --------
>
> Each of these cells have been set with height's in the css file ive
> included.
>
> cell a has a height of 2px and cell b has a height of 15px
>
> The thing is, they both appear the same size, any ideas?
> Url: http://homepage.ntlworld.com/c.jones...s/oneoffsites/
>
> Thanks
>
>