Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can't get <body topmargin="0"> to work ??

Status
Not open for further replies.
Well, you have the body tag up in the head section with a break after it - try replacing from the top of the table up with your reworked code below:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head>
<link href="/ForumMacro.css" rel="stylesheet" type="text/css">

<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
.mylink{
     font-family: Verdana,Arial,Helvetica,sans-serif;
    font-size: 12px;
    font-style: normal;
	font-weight: bold;
    color: #000000;
	font-horizontal position: center;
     text-decoration: none;
}
a.diffLink {set style
	color: #666666;
	color: #0066FF;
	font-weight: normal;
}
a.diffLink:hover {set style
	color: #FF0000;
	color: #FF0000;
	font-weight: normal;
}

<a href="3" class="diffLink"></a> 
</style>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>

</head>
<body leftmargin="0" topmargin="0">

Donna
 
Thanks, for the help. I can't believe I didn't see that.

[wavey3] [wavey3]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top