Setting Left and Top Margins to a Page
SeaMonkey does not have an easy way to set a document's top and left margin. To do this one must paste the following code into the documents Source code:
<body leftmargin="35" topmargin="35"
style="background-color: rgb(255, 255, 255);" marginheight="35"
marginwidth="35">
To do this:
Copy the above text
Switch from Normal to <HTML> Source
Insert the copied code after the word <head>:
</head>
<body leftmargin="35" topmargin="35"
style="background-color: rgb(255, 255, 255);" marginheight="35"
marginwidth="35">
To adjust the margin setting, change the 35 in the four locations above. (The value of 35 gives a margin of approximately one half an inch)
EXAMPLE:
Return to Previous Page