Backgrounds

S

syssupspe

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
 
M

Murray

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.
 
Top