As Thomas pointed out, your best bet is to use CSS (Cascading Style Sheets)
for this.
First, add a new stylesheet to your website (should be under File | New -
I'm using FP2002 and I believe they changed that a bit, so you'll have to
find it) and add the following to it:
body {
background-color: #000; /* sets the background color to black */
background-image: url(
http://www.7thsenseband.com/mainback.jpg);
background-repeat: no-repeat; /* keeps the image from tiling */
background-position: center; /* centers the image on the page */
}
Save that with the file name of style.css at the root of your website (same
place as your homepage).
Now, in the head (between the <head> and </head> tags) of each page, add the
following line:
<link rel="stylesheet" type="text/css" href="/style.css">
In FP2002, there's a quicker way to add style sheet links to multiple pages
in your site, but again, I think that's different that in FP2000. Just in
case, though, the command in FP2002 is accessed by clicking Format |
Stylesheet Links. It's just been so long since I used FP2000, I can't
remember if it's there or not.
Also, you can name the stylesheet file anything you want, but "style.css" is
sort of a defacto name.
If you'd like to learn more about CSS, a good primer can be found here:
http://www.w3schools.com/css