If this is a background image you need to add the location of the image to
the CSS that Steve gave you. For example, switch to Code View and above the
</head> tag put:
<style type = "text/css">
body{
background-image:
url(images/myimage.jpg);
background-repeat: no-repeat;
}
</style>
If you wanted to center it you could add:
background-position : 50% 50%; so it would look like this:
<style type = "text/css">
body{
background-image:
url(images/myimage.jpg);
background-repeat: no-repeat;
background-position : 50% 50%;
}
</style>
You can play with the percentages to move it to where you want it on the
page.
If you want your text to scroll over it you could add:
background-attachment : fixed;
So it would then look like this:
<style type = "text/css">
body{
background-image:
url(images/myimage.jpg);
background-repeat: no-repeat;
background-position : 50% 50%;
background-attachment : fixed;
}
</style>
You'd just keep adding to the CSS style until you get what you're looking
for. You can do a search for CSS or stylesheets for more about them or take
a look at
http://msdn2.microsoft.com/en-us/library/aa140116(office.10).aspx for some
basic info.