Backgrounds

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
Is there a way to set the same background to all pages except the default or
Home page of which I have a watermark background picture. Thanks
 
Use CSS as an externally linked stylesheet - let it specify the background
image for all pages by using a body selector, e.g.,

body { background-image:url(whatever.gif); }

Then on the home page, add an embedded stylesheet that points to the
watermarked pix.
 
Back
Top