Watermark

L

Learner

Using Front Page 2003 - how do I put in a picture as a background (full
screen on the first webpage) like a watermark? Thanks
 
T

Trevor L.

Learner said:
Using Front Page 2003 - how do I put in a picture as a background
(full screen on the first webpage) like a watermark? Thanks

Use the Code or HTML tab to edit the code.

In the <head> section , add
<style type = "text/css">
body {background: url(mybg.jpg)}
</style>
where mybg.jpg is in the same folder as the first webpage.

If it is another folder, e.g. images/
use url(images/mybg.jpg)

You can also experiment with adding the parameters
repeat
fixed
top
after the parameter url()

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
----------------------------------------
 
L

Learner

Thanks Trevor - will try that.


Trevor L. said:
Learner said:
Using Front Page 2003 - how do I put in a picture as a background
(full screen on the first webpage) like a watermark? Thanks

Use the Code or HTML tab to edit the code.

In the <head> section , add
<style type = "text/css">
body {background: url(mybg.jpg)}
</style>
where mybg.jpg is in the same folder as the first webpage.

If it is another folder, e.g. images/
use url(images/mybg.jpg)

You can also experiment with adding the parameters
repeat fixed top
after the parameter url()

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
----------------------------------------
 

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

Top