8
What you have is one table row ("tr") containing two table cells ("td"). Each of the cells occupies half the width of the row.
So.........
1. to get them side-by-side in the centre of the row you could align the contents of the left cell to the right and the right cell to the left, i.e.
<table height="20" border="0" cellpadding="0" cellspacing="0" class="balk2">
<tr>
<td id="buttons_boven" align="right"><a href="http://www.tktclan.com">HOMEa>td>
<td id="buttons_boven" align="left"><a href="http://www.tktclan.com/modules/newbb/">FORUMSa>td>
tr>
table>
2. there are lots of ways to get them side-by-side on the left of the row, but the easiest would be to have just one cell in the row, something like:
<table height="20" border="0" cellpadding="0" cellspacing="0" class="balk2">
<tr>
<td id="buttons_boven"><a href="http://www.tktclan.com">HOMEa> | <a href="http://www.tktclan.com/modules/newbb/">FORUMSa>td>
tr>
table>
the
|
separates the words and adds a "|" character just for show. This isn't essential but might look nice
3. An alternative way to align them in the centre would combine the two methods above, i.e. one cell which is centre-aligned:
<table height="20" border="0" cellpadding="0" cellspacing="0" class="balk2">
<tr>
<td id="buttons_boven" align="center"><a href="http://www.tktclan.com">HOMEa> | <a href="http://www.tktclan.com/modules/newbb/">FORUMSa>td>
tr>
table>
Hope this helps