Okay, not only are the margin attributes depricated in the latest version of HTML, but they really puke when viewed in Netscape. The way around this is using CSS (Cascading Style Sheets). Since I know you’re not using them right now, I’ll make this as simple as possible.
I’m not sure if this is what’s wrong with your site in Netscape 4, but giving it a shot can’t hurt anything.
Copy the following code into notepad:
body {
margin: 0px;
}
Now save it with the name style.css, and then put it on your webserver somewhere, perhaps in it’s own CSS folder. (ie: http://www.axisandallies.org/css/style.css )
In the section of your webpage, add the following code:
Now, on your webpage, at the tag, change what you have now to:
That should take care of your problems. Lemme know if it works. :P