Help needed. I've used the following code on my web site: <TABLE cellPadding=0 cellspacing=0 width="100%" height="120" bgColor=#3399fF border=0><TBODY><TR border="0"> <TD> </TD></TR></TBODY></TABLE> ..and it produces something like this: How do I remove the border that appears around the edge of the page? Thanks in advance.
try putting this in your css file: html, body{ padding:0; margin:0; } Code (markup): Or, if you don't have a css file, just put this in between your head tags: <style type="text/css"> html, body{ padding:0; margin:0; } </style> Code (markup):