Adding backgroung image to a form

Hi,

It sounds simple, but can someone please show me how to add a background image to a form.

I could not find any options in the settings or layout section which would allow me to add a background image.

When I try and edit my theme, I could not find any option of adding an image, it was all about adding background colours etc.

Thanks
razaw

Short Version: Tools / Layout / Themes -> Save (as) your theme with new name -> Advanced mode -> Form / Page / Background Image

Simple version:

In event onApplicationInit on your form:


print ("
 <style type='text/css'>
 body {  background-image:url('../_lib/img/yourimage.png');  } </style>
");

ok great, thanks for your help.