dpyers: I don't mean to criticise your code or anything, jut to provide a piece of advice.
You don't need to explicitly set the width="25%" to all TDs, just the first set of 4, on the first row, then all the others below will inherit it's width from the first definition found, this is cool because it saves alot in file size if you have a large table.
Misty: You can use fixed width TDs if you have to, in case you need to display something on the left that must be width static, and set the other TD to 100% width. Ex. The following is a table normally used in CMS systems where they have a little table on the left, content in the middle and another little table on the right. The left and right tables are width static, but the content one in the middle is set to 100% so it resizes as you resize the browser window.
<TABLE BORDER="1" HEIGHT="200" CELLPADDING="0" CELLSPACING="0">
<TR>
<TD WIDTH="200" ALIGN="center">leftCell</TD>
<TD WIDTH="100%" ALIGN="center">ContentCell</TD>
<TD WIDTH="200" ALIGN="center">rightCell</TD>
</TR>
</TABLE> |
Edited by theSCIENTIST