The easiest way to sort it (assuming you want to have all your tables the same borders etc, that would include all the crap dreamweaver uses for padding, so may screw the look up a lot, or may not) is to look up the css spec for tables, and just put a global:
Code:
table {
margin: 0 0 0 0;
padding: 0 0 0 0;
border: thin solid #CCCCCC;
}
Try pasting that into one of the top style declarations.
Edit, that doesnt work, mainly because all teh dreamweaver stuff overrides it, but certainly changing the line:
Code:
<td width="782"
style="border-left:1px solid #CCCCCC; border-right-style:solid; border-right-width:1; border-top-style:solid; ......... blah
to:
Code:
<td width="782"
style="border:1px solid #CCCCCC; <delete all the rest of the border references on that line
Will sort out the first problem, although dreamweaver might screw it all over again when you go to edit the page.