fixed size of background picture

  • Thread starter Thread starter wyzguy
  • Start date Start date
W

wyzguy

I am using a background picture of a stack of postcards with layout
tables and cells. In larger monitors the background repeats. Is
there a way to eliminate the repeat, so just the one image only shows?

See http://www.z29.wyzguys.net
 
Actually, don't use this - that's invalid HTML, meaning it would only work
in IE (and I'm not even sure it works in IE7).

Use CSS - create a new rule for the body tag -

body { background-repeat:no-repeat; }
 
Back
Top