1 Like
can you tell about which area you want to make background?
1 Like
Apply to the black screen
oh okay so you can put this code into gameplay instructions:
(This is for background-image)
<style>
div#menu-wrapper {
background-image: url("your-url-here");
background-repeat: repeat;
}
</style>
This is for background color:
<style>
div#menu-wrapper {
background-color: red;
}
</style>
1 Like
Ok, thanks for doing that