PDA

View Full Version : how do you align the links


mists0fdeath
08-09-2002, 08:21 PM
like some site have links on the left and then the main content on the rest of the page, do you understand what i mean

requestcode
08-09-2002, 08:29 PM
Most will either use frames or TABLES to allign links and content.

mists0fdeath
08-09-2002, 08:33 PM
okay thanks, but wont tables come underneath each other??

applesauce
08-09-2002, 08:45 PM
yes, a new table would be under another table, but td's will be side by side.

for example:

<table width="100%">

<tr>

<td width="20%">
left menu stuff
</td>

<td width="80%">
content stuff to the right of the menu stuff
</td>

</tr>

</table>

you can also nest another table inside a tr for more structure.