It would be very easy. First, if you were looking to keep the table (which technically wouldn't be necessary):
Code:
<table>
<tr>
<td width="198"><a href="./blah.hmtl" class="menulink">Blah1</a></td>
<td width="198"><a href="./blah.hmtl" class="menulink">Blah2</a></td>
<td width="198"><a href="./blah.hmtl" class="menulink">Blah3</a></td>
</tr>
</table>
But, since all the work is done via CSS (which, I might add, is veeerry easy, and a good idea to learn) technically all you would need to do is get rid of the table, and change display:block, to display:inline. Or even lose that line altogether. Block automatically inserts a line break after the element.
Bookmarks