need help making a table layout.

liunx

Guest
I have no clue how to do this (see picture).<br />
<br />
Can someone tell me?<br />
Thank You<!--content--><table><br />
<tr><br />
<td colspan="3"><br />
the logo stuff<br />
</td><br />
</tr><br />
<tr><br />
<td><br />
<table><br />
all the tr and td you need fo the menu<br />
</table><br />
</td><br />
<td><br />
the middle stuff<br />
</td><br />
<td><br />
the right side stuff<br />
</td><br />
</tr><br />
</table><br />
<br />
<br />
Roughly something like that will give you taht kind of layout<!--content-->That doesn't work, COBOLdinosaur<!--content-->and why not?<!--content-->Sure it would. I tried it :).<!--content-->When I insert it, all I get is text, not a table.<!--content-->what is your code that you say doesn't work?<!--content-->Post your code, or a link, this should be a no-brainer.<!--content-->When I post:<br />
<table> <br />
<tr> <br />
<td colspan="3"> <br />
the logo stuff <br />
</td> <br />
</tr> <br />
<tr> <br />
<td> <br />
<table> <br />
all the tr and td you need fo the menu <br />
</table> <br />
</td> <br />
<td> <br />
the middle stuff <br />
</td> <br />
<td> <br />
the right side stuff <br />
</td> <br />
</tr> <br />
</table> <br />
<br />
into a HTML editor, it only shows up as text.<!--content-->This code works fine. What do you expect to see? If you want to see the table border, then add border=1 to the opening table tag. IE: <table border=1>.<br />
<br />
Remember this is basic code for a table based on your description and you will have to specify your table widths, cellpading, cellspacing, border and any other attributes to customize it to suit your page.<!--content-->Originally posted by froggyvk <br />
When I post:<br />
<table> <br />
<tr> <br />
<td colspan="3"> <br />
the logo stuff <br />
</td> <br />
</tr> <br />
<tr> <br />
<td> <br />
<table> <br />
all the tr and td you need fo the menu <br />
</table> <br />
</td> <br />
<td> <br />
the middle stuff <br />
</td> <br />
<td> <br />
the right side stuff <br />
</td> <br />
</tr> <br />
</table> <br />
<br />
into a HTML editor, it only shows up as text. <br />
<br />
paste the code into your editor and save it as test.html and it will display in your browser.<!--content-->Might also help if you wrap an HTML and body tag around it.<br />
<br />
What editor are you using BTW?<br />
<br />
Cd&<!--content-->
 
Back
Top