You don't state how long you want the background to last:
1. Only until the next Passage Transition.
You can use the <<addclass>> macro to add a CSS classname to the body element, and then use a CSS selector that targets that classname to change the current background. The classname will be automatically removed from the body element upon then next Passage Transition. The following assigns the forest classname.
<<linkreplace "Click Me">><<addclass "body" "forest">><</linkreplace>>
You would use a CSS selector like the following within your project's Story Stylesheet area.
body.forest {
/* place the CSS properties you want to change here. */
background-image: none;
}
2. For this and all following Passages.
In this case you would assign the CSS classname to the html element like so.
<<linkreplace "Click Me">><<addclass "html" "forest">><</linkreplace>>
... and use a CSS selector like the following.
html.forest body {
/* place the CSS properties you want to change here. */
background-image: none;
}