Jump to content

[SOLVED] add background image to launcher script


photo

Recommended Posts

Posted

Playing with the launcher from the create new project in the latest sdk. Specifically modifying either the html file or the css file to display an image, so far no dice - any ideas.

Posted

In project.css for #launcher-background change property background-color or add background property with url. For eliminate black stripe behind form elements change property background-color for #form-background or delete it. Example:

#launcher-background {
	position: absolute;
	top: 0;
	left: 0;
	height: 498px;
	width: 750px;
	background: url('background_image.png');
}

#form-background {
}

 

Posted

[last reply edited out as the information is out of date]

 

Ok found the problem - it appears that launcher supports png but not jpg files.... Thanks.

×
×
  • Create New...