Please Help!!!!

Ok, I have to code this somewhat complex table by just going by the following image:<br />
<br />
<!-- m --><a class="postlink" href="http://stu.wccnet.org/~kgoerbig/inp270/img/hw1.gif">http://stu.wccnet.org/~kgoerbig/inp270/img/hw1.gif</a><!-- m --><br />
<br />
Here is my code:<br />
<br />
<!-- m --><a class="postlink" href="http://stu.wccnet.org/~kgoerbig/inp270/labs/hw1.htm">http://stu.wccnet.org/~kgoerbig/inp270/labs/hw1.htm</a><!-- m --><br />
<br />
When I was working on this at work, it rendered fine, but now all the left web links span the whole table width rather then just the size of the links (one or two words at most). Also, on the right side of the table columns like "quick links", "Featured Websites", "case study", I'm not sure how to get those to align correctly with my current code. Can someone help me out? <br />
<br />
Thanks,<br />
Kelly<!--content-->that is not complex at all. first you better take a look at the image again as it uses 2 tables. the first table doesn't use a border and the second table that is nested inside of the first one does. now you have to redo what you have there as I found a couple of errors in it. one, you are missing a <tr> tag and two colspan doesn't go into the <tr> tag. now look at the image and you can see then the center of the table will need rowspan do go all the way down to the end of the table. the links on the left won't have any span to them. same goes for the right hand side.<!--content-->First, I did not find any colspan's in a <tr>, I did a find ( <ctrl> F) and every colspan was in a <td> tag. Second, you say there are two tables in it, but how can you have a second <table></table> with out making a second table outside that table?<!--content-->really, line 38 has one<br />
<br />
<tr colspan="2"><br />
<br />
also you need to add anotehr table. see the grey border up top on that image, that is the first table that doesn't have the border. it also extends down to the bottom.<br />
<br />
to add another table you need to do it like this<br />
<br />
<br />
<table bgcolor="grey"><br />
<tr><br />
<td>first row here, the grey part in the image</td><br />
</tr><br />
<tr><br />
<td><br />
<table border=3 bgcolor="#FFFFFF"><br />
do the stuff you have now in this table<br />
</table><br />
</td><br />
</tr><br />
<tr><br />
<td> the last part of the first table on the bottom is grey</td><br />
</tr><br />
</table><!--content-->
 
Back
Top