Modify the appearance of control form

Hi guys:

For a form of control, how I can put a background image in the background behind the form.
I want to modify the appearance of the form to make similar to form login scriptcase itself.
I need help.Is there any tutorial or demonstration video?
Thanks in advance

Carlos

Re: Modify the appearance of control form

You can use jQuery and add a html code to one of the element or change body css but i dont know is it right solution maybe there is an option to do it.

Re: Modify the appearance of control form

Create a PHP method and then call method in onInit.

In the PHP Method, add your HTML/CSS to draw the background.

Regards,
Scott.

Re: Modify the appearance of control form

You can create a Theme too, in Scriptcase main menu Tools->Layout->Theme.

Re: Modify the appearance of control form

I’ve been trying to do this for a while, i used an image the same size of the SC login screen (1900x1280), but unlike the scriptcase login screen, on my login scree the image appears to big. how can i tell the form to resize the image?

Re: Modify the appearance of control form

anyone?

Re: Modify the appearance of control form

Should be simple using HTML?

<img src="big_image.jpg" width="100%" alt=""> 

You can google: resize image html

Regards,
Scott

Re: Modify the appearance of control form

where i can use html code???

Re: Modify the appearance of control form

anywhere that accepts php code


?>

your html code

<?php


In a control form for example:

onLoad:

php_layout();

Create a PHP method: php_payout() and add your html between the php tags

When you app loads, it will call the method

Regards,
Scott.

Re: Modify the appearance of control form

Also see:
http://www.scriptcase.net/forum_en_us/index.php?topic=4410.msg10437#msg10437

Regards,
Scott.

Re: Modify the appearance of control form

my image using your explanation is over my form

why?