Quote:
Originally Posted by lunged
Great, thanks!
Now, is the coding way easy enough for someone to explain in this thread, or should I just wait for the WYSIWYG method? I do know some coding, just basic HTML and Objective-C, so I should be able to catch on pretty quickly. Thanks again.
|
Just replace your plain <body> tag with
<body style="margin:5px">
to give five pixels of margin all around the page. If you want more or less, just change the figure. If you want uneven margins, use
<body style="margin:5px 4px 0px 4px">
where the order is top, right, bottom, left.