If in any case you are having issues in using the Style tool, you can use the code below to force the layout to change its background:
For tiled image background:
<style>
.body {
background-attachment: fixed!important;
background-image: url("PUT YOUR IMAGE URL HERE")!important;
background-position: center!important;
background-repeat: repeat!important;
background-size: auto auto!important;
background-size: auto auto!important;
}
</style>
For full image background:
<style>
.body {
background-attachment: fixed!important;
background-image: url("PUT YOUR IMAGE URL HERE")!important;
background-position: center!important;
background-repeat: repeat!important;
background-size: cover!important;
}
</style>
You have to add the code in the Edit Head Section which is under Settings located at the right hand side of the website builder in order to work.






