Dear Marion
@marion-guillard
If you dont apply a background image to the row itself in the Gridder:
Screen Shot 2022-04-05 at 11.29.05 AM.png
Then you may want to Custom Code. You would apply a Background Image normally via > Customize> and then add some CSS saying "remove the background image for all pages "except" e.g Page A "
The "exception - Page A" will be using the page's "slug" in the code:
https://laytheme.com/documentation/custom-css-styling.html#css-based-on-current-page
Something like:
body:not(.slug-homepage) {
background-image:none !important;
}
this .slug-homepage is relevant for me but you will need to find the slug of your page or project, the link above explains this 👍
Best
Richard