PDA

View Full Version : Cant figure this out Help!!!



hoffa
Sat 22nd Feb '03, 6:33pm
I use IE for Mac my site works the way I would like. But viewed on IE on PC the images in the cells are spaced apart from one another/ Why?????



http://www.ehdesign.net/web/webd.html

Click on sneek a peek.

Floris
Sat 22nd Feb '03, 7:56pm
You can solve that by putting the menu in its own table and the table in the cell instead of the code directly in the cell, this to avoid to let it span vertically when the text gets move then the menu

<table width="400" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Your menu</td>
</tr>
</table></td>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Content of your page</td>
</tr>
</table></td>
</tr>
</table>

hoffa
Sat 22nd Feb '03, 8:22pm
You can solve that by putting the menu in its own table and the table in the cell instead of the code directly in the cell, this to avoid to let it span vertically when the text gets move then the menu

<table width="400" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Your menu</td>
</tr>
</table></td>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Content of your page</td>
</tr>
</table></td>
</tr>
</table>

I think I did what you asked with no luck?