i've got a problem with a table... i have a main table set up with a header row (colspan 2), navigation and content cells in a row, and then a footer row (colspan 2).
i need to set the navigation to a specific width (165px) and have the content take up the rest. the only "solution" i've found is to force the content cell width to 100%, but this creates another problem. my page wants to scroll left and right, when clearly the text in the content cell should be wrapping. the extra bit seems to be the width of a scrollbar. any ideas?
also i need to set the content to fill the screen heightwise, without pushing the footer off the page. i have the entire table set to a height of 100%, and then the content cell set to height of 100% (without this, if there is only a little content the footer pushes up and looks ugly), but this pushes the footer off the bottom of the screen. any ideas?
i have right now
<table width=100% height=100%>
<tr>
<td colspan=2>head</td>
</tr>
<tr>
<td width=165>navigation</td>
<td width=100% height=100%>content</td>
</tr>
<tr>
<td colspan=2>footer</td>
</tr>
</table>
any suggestions? you can view the site at
thanks for any help mike griffith
----------------------------
mgriffith@lauren.com
mdg12@po.cwru.edu
i need to set the navigation to a specific width (165px) and have the content take up the rest. the only "solution" i've found is to force the content cell width to 100%, but this creates another problem. my page wants to scroll left and right, when clearly the text in the content cell should be wrapping. the extra bit seems to be the width of a scrollbar. any ideas?
also i need to set the content to fill the screen heightwise, without pushing the footer off the page. i have the entire table set to a height of 100%, and then the content cell set to height of 100% (without this, if there is only a little content the footer pushes up and looks ugly), but this pushes the footer off the bottom of the screen. any ideas?
i have right now
<table width=100% height=100%>
<tr>
<td colspan=2>head</td>
</tr>
<tr>
<td width=165>navigation</td>
<td width=100% height=100%>content</td>
</tr>
<tr>
<td colspan=2>footer</td>
</tr>
</table>
any suggestions? you can view the site at
thanks for any help mike griffith
----------------------------
mgriffith@lauren.com
mdg12@po.cwru.edu