Background Images for different sections of website

Permalink
Hi I have a dilema which I hope someone here can help with.

I have a website which requires two sections to it each section requires different backgrounds.

Please help how I can achieve this.

Regards,
Alan.

alancurrall
 
Steevb replied on at Permalink Reply
Steevb
Do it with your CSS.

No image, just a colour:
.section1{background:#FFF;}


.section2{background:#CCC;}


Colour and image:
.section1{background:#FFF url(images/image1.jpg) no-repeat 0 0;}


.section2{background:#FFF url(images/image2.jpg) no-repeat 0 0;}