Hello!
I'm trying to figure out how to create a custom background image, to put behind the HTML5 Web exported project on a website.
Its probably just a simple snippet of code needed. I've tried different things, but cant seem to get it right.
I've been editing the index file of the exported project - where I've managed to set the background color correctly, but cant put my image centered and behind the game window itself.
Edit*
I feel stupid now, I was putting my code in the wrong place. The code needed was:
<style type="text/css">
body { background-image:url(imagename.PNG); background-position:center top; background-repeat:no-repeat }
</style>
withing the body section of the index file.