In FP2002, How Can I Make an Image the background for a Web Page?

  • Thread starter Thread starter AA Smith
  • Start date Start date
A

AA Smith

I would very much like to know how I might make an image (.jpg or
other-wise) the background for a page (or all pages) in my web?
 
Use this CSS, preferably in an exteenal CSS file (say style.css)
body { background: #00FFCC
url("images/display/04-08-24-1-bird-bath.jpg")
repeat fixed;}

I have set a background default colour which displays before the background
loads, although I must try some other colour.
You may not want:
repeat, which repeats the image when the page gets larger(alternative is
"norepeat")
or
fixed, which doesn't scroll the image (alternative is "scroll")

If in style.css. link via this statement on all pages:
<!-- External CSS Files -->
<link rel="stylesheet" type="text/css" href="style.css">
 
Back
Top