Unwanted Space

Help me. At this website I made for a team I have this unwanted spaced at the very top of the page. I do not want this to be there. Any help would be great.<br />
<br />
click here (<!-- m --><a class="postlink" href="http://bssrobotics.vze.com">http://bssrobotics.vze.com</a><!-- m -->)<!--content-->Hi Jac83188,<br />
<br />
You have a piece of code in your html that doesnt make any sense. It reads:-<br />
<br />
<back ground="bg.gif" text="#000000" link="#000000" alink="#000080" vlink="#000000" topmargin="0" leftmargin="0"><br />
<br />
It should read:-<br />
<br />
<body background="bg.gif" text="#000000" link="#000000" alink="#000080" vlink="#000000" topmargin="0" leftmargin="0"><br />
<br />
Thats the correct method and should now push your page to the top left corner.<br />
<br />
Hope this helps.<br />
<br />
Goody :)<!--content-->You should also include marginheight=0 and marginwidth=0 for Netscape. You also don't need the "# or " when nominating colours AFAIK.<!--content-->uhh yes you are. the standards say that for the browser to read all colors it has to have the # in front of it. Netscape has problems if you don't or it is very buggy.<!--content-->Also, to be HTML 4 (or XHTML 1.0) compliant you have to remove the leftmargin and topmargin attributes from the body tag and put them into a style sheet. <br />
<br />
E.g.<br />
<style><br />
body {<br />
margin: 0px, 0px, 0px, 0px;<br />
}<br />
</style><!--content-->Oh yeah, I forgot about Netscape and # for colours. I've had trouble myself with those myself in the past. }:-)<!--content-->Thanx<!--content-->
 
Back
Top