How to change position of form?

  • GuyPalinckx
    Asked on September 30, 2016 at 5:44 AM

    Hi,

     

    Probably a stupid question but I can't seem to find it.

    I'm using a background image and I would like to move my form to te left or right site.

    I'm sure it's possible as I saw many examples but when I compare the settings of my form and another one, they are the same.

    Probably, it's a setting but I can't find it.

     

    Thanks for helping me

     

    Guy

  • sevkiyontem
    Replied on September 30, 2016 at 9:46 AM

    Hi,

    Please give it a try with the code below:

    .form-all {

    float: left;

    }

    If you do not know how to insert css code, you can learn from here

    This will make background image and the form to align left.

    Also there are other properties that can be used for your needs. Check out expert design tool. Here are some tutorials. For instance you can make your form responsive. Also try responsive mode, so different machines can view the form in better formats.

    How to change position of form? Image 1 Screenshot 20

    I hope this helps,

     

    all the best!

  • Irshad
    Replied on September 30, 2016 at 9:56 AM

    Thanks @sevkiyontem, your solution is correct.

    If you want to align your form to left you can inject the below css code 

    .form-all{

        float:left;

    }

    How to change position of form? Image 1 Screenshot 20

     

    If you want to align your form to right, then try to inject the below css code:

    .form-all{

        float:right;

    }

    You can also verify it on my clone form: http://jotform.com/62733933423961

    If you have any query, or need further assistance, feel free to revert back.