Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS changing full page background image in sub pages Re: changing full page background image in sub pages

#138335
Paulie_D
Member

Neither.

The only HTML that is needed is to add the ID to the `body` tag as shown above.

This..

body#home {
background-image: url(…123.jpg);
}

body#contact {
background-image: url(…XYZ.jpg);
}

…goes in your CSS file (ideally near the top).