View Full Version : Help


Dirtbike125
04-27-2003, 03:07 AM
I need help to make just one big table box:


|------------|
|Home |
|Links |
|Stuff |
|Stuff |
|------------|

not like this:

|------|------|
|Stuff|Stuff|
|------------|
|Stuff|stuff|
|------|------|

like no row down the middle
or right through it. like one big rowspan
its porbley hard to understand me but if u can i need help

Dude128
04-27-2003, 03:11 AM
just put everything inside one cell:

<table>
<tr>
<td>
All your content goes here
</td>
</tr>
</table>

and just add your attributes and stuff to the above tags :)

Dirtbike125
04-27-2003, 03:18 AM
then if i type in the stuff i want to put in that box it stretch with wise i want it like a like box so i dont want it like:

Home Links stuff

i want it like

Home
Links
Stuff

Xiphias
04-27-2003, 03:56 AM
<table>
<tr>
<td>
Home <br>
Links <br>
Stuff <br>
</td>
</tr>
</table>