In your style section:
Code:
#leftcolumn a{
padding: 3px 1px;
display: block;
width: 100%;
text-align:left;
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid gray;
}
But that's really just a quick fix. If you were to move the center tag (red):
Code:
<center>
<table width="630" bordercolor="#800000">
<tr>
<td>
<div id="leftcolumn">
<a href="javascript:ajaxpa . . .
to the end of the table:
Code:
. . . olumn"><h3><font color="#ffffff">Choose a page to load.</font></h3></div>
<div style="clear: left; margin-bottom: 1em"></div>
</td>
</tr>
</table>
<center>
<font size="-1" color="#000000">(c) Copyright 2007 All Rights Reserved- Learn Sign Language.info</font>
</center>
<script type="text/javas . . .
You could then make the table align center or style it margin:0 auto; - examples:
Code:
<table align="center" width="630" bordercolor="#800000">
<tr>
<td>
<div id="leftcolumn">
<a href="javascrip . . .
or:
Code:
<table style="margin:0 auto;" width="630" bordercolor="#800000">
<tr>
<td>
<div id="leftcolumn">
<a href="javascript:ajaxp . . .
This would fix the problem, as well as fix the alignment of text in the right column.
Bookmarks