Hi there hwoodfilm,
in your stylesheet change this...
Code:
#main {
font-size:15px;
width:525px;
height:400px;
margin:5px 5px 5px 5px auto;
border:0px;
overflow:auto;
}
...to this...
Code:
#main {
font-size:15px;
width:505px;
height:400px;
padding:10px;
border:0;
overflow:auto;
text-align:justify;
}
In your markup change this...
Code:
<td class="test" align="justify">
<div id="main">
...to this...
Code:
<td class="test" style="padding:0;">
<div id="main">
coothead