To get a symetrical look, put widths on individual columns, not the table as a whole. For example, if you have 4 columns, put
[red]width="25%"[/red] in each <td> definition. If you want to put a width on the table, make sure it's wide enough to hold all the links. You can use px, em, or % measurements. But to start, try not having a width on the table and see how that looks, then go from there.
You can also add spacing between cells by using the CELLSPACING and CELLPADDING attributes. Again, w3schools has good have syntax and usage examples.
An observation if you will permit: You are using the <th> tag instead of <td>, and while that will work, the context in which you are using it is not what <th> is intended for. <th> is intended as a documentation tool - to define a
[red]t[/red]able
[red]h[/red]eader, that is, the column heading for a table of data. It would be better to use a style -
Code:
.
.
<td style="font-weight:bold">
.
.
After you get more experience, you'll want to convert all the table stuff to styles anyway, and you'll define the link style separately outside the <td>
Mike Krausnick
Dublin, California