Blank Area around page

J

Jason Schwartz

When I use FP2003, anything I type or background color
into a Shared Border doesn't sit flush against the IE
window. It's almost as if there is a margin preventing
anything from the outside edges. Is there a way to get
anything to be set flush against the window? Thanks for
your help.
 
R

Rob

Jason

Switch to html view and add this to the html <body> of your page
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> where
"0" is the margin in pixels.

Rob
 
J

Jim Buyens

-----Original Message-----
When I use FP2003, anything I type or background color
into a Shared Border doesn't sit flush against the IE
window. It's almost as if there is a margin preventing
anything from the outside edges. Is there a way to get
anything to be set flush against the window? Thanks for
your help.

1. Open the page and choose Properties from the File menu.
2. Click the Advanced tab.
3. Set all six boxes under Margins to 0.
4. Click OK and save the page.

The following CSS rule also does this, except in older
browsers.

<style>
body { margin:0 }
</style>

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 
Top