Transforming XHTML code from Transitional to Strict isn't very easy, and what's worse? The original code had over 100 validation errors.
I have managed to reduced that number to 6 errors.
Ok, so the main problem is... After I fiddled around with the CSS code and managed to take away the
CODE
leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"
code from the
CODE
<body>
tag and put them in CSS asCODE
body {
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
}
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
}
but the code seems to have problems keeping borders at bay...
so now I have white borders surrounding every little table and picture! so what would fix this? I would really want to stay within the XHTML Strict rules. So help?... Anyone?

