There isn't a "right size" for the web, where background images are
concerned. There may be a "right size" for your browser, but your
browser and my browser - along with thousands of others - are opened
at different sizes. You've already found that the FrontPage normal
and preview "browsers" [and they are browsers - just not very
conventional] are the wrong size for your image (or is your image the
wrong size for those "browsers"?)
If the whole of the image must be seen, without tiling, the best
solution is to size the image at 500px wide by 400px high, and use CSS
to centre it in the browser viewport, as you have done. (Most, but
not all, browsers are opened to at least this size. I usually design
for a browser opened to 760px by 425px of viewable space, AKA
800x600.)
The scroll bar will only be active when content on your page
(background images are not content) requires it.
--
Ron Symonds
Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
"Summarah" <(E-Mail Removed)> wrote in message
news

99E9981-B084-4AAB-B1A5-(E-Mail Removed)...
> It's already the right size for the web. The problem is that it's
> just a
> little "taller" than the FP2002 normal and preview windows, but
> there's no
> option to scroll down to see the bottom of it. And when I preview in
> the
> browser, it's the same. I've tried it as a watermark and not. I've
> tried
> inserting as a picture w/ absolute positioning. I've tried inserting
> a table
> over it, but it repeats. I've tried CSS formatting specifically for
> the
> background (because I'm not very familiar with CSS yet) inserted in
> the
> header as (but surely there must be some HTML to accomplish the same
> thing):
>
> <style type="text/css">
> body
> {
> background-image:
> url('my_image.jpg');
> background-repeat:
> no-repeat;
> background-position:
> center;
> }
> </style>