Blank Area around page

  • Thread starter Thread starter Jason Schwartz
  • Start date Start date
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.
 
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
 
-----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)
|/---------------------------------------------------
*----------------------------------------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top