When you set the page margins in the Page Properties dialog box, it adds the corresponding tags to the document's <body> tag. Unfortunately, these tags work only in Microsoft's Internet Explorer. To set the tags so they'll work in Netscape: - Click the HTML tab to view the HTML code.
- Hit Ctrl-Home to jump to the top of the code if you're not there already.
- Scroll down until you find the <body> tag. At the end of the tag (before the >), add:
MARGINHEIGHT="0" MARGINWIDTH="0" (substitue "0" for the number of pixels you want for the margin). - The tag should now look something like this:
<body topmargin="0" leftmargin="0" MARGINHEIGHT="0" MARGINWIDTH="0"> - Test your page in Netscape Navigator
<Back to table of contents> |