How to remove (reduce) the distance?

  • onitut
    Asked on July 14, 2015 at 5:46 AM
  • Sammy
    Replied on July 14, 2015 at 5:59 AM

    Inject the following CSS into your form

    .form-all{

    margin-top: -80px;

    }

    How to remove (reduce) the distance? Image 1 Screenshot 20

  • onitut
    Replied on July 14, 2015 at 6:02 AM

    THANK YOU MAN! :)

    HELLO YOU FROM RUSSIA WITH LOVE!

    WORLD - BROTHER!

  • Sammy
    Replied on July 14, 2015 at 6:14 AM

    You are most welcome, If you need any more help feel free to contact us and we will gladly assist.

  • onitut
    Replied on July 14, 2015 at 6:33 AM

    how to make an automatic transfer to another line?

    We need to do so that would be placed in a text box, and did not get out of its chapels.

    Where can I find this setting?How to remove (reduce) the distance? Image 1 Screenshot 20

  • Sammy
    Replied on July 14, 2015 at 6:50 AM

    You can increase the width of the form to about 600PX, it seems the default is a bit low hence the text is extending beyond the boundary.

    You can achieve it with the following CSS snippet

    .form-all{

    width: 600px !important;

    }

  • Sammy
    Replied on July 14, 2015 at 6:53 AM

    Another simpler approach is to set the width in the form preferences

    How to remove (reduce) the distance? Image 1 Screenshot 20

  • onitut
    Replied on July 14, 2015 at 7:10 AM

    Thanks! Increasing the width of help.

    But how to do that would be automatically transferred to the text (if the width of the screen less - let's say on a mobile phone). ?How to remove (reduce) the distance? Image 1 Screenshot 20

  • Sammy
    Replied on July 14, 2015 at 7:52 AM

    We can use the id of the element holding the long check-boxes and apply the following CSS property

    #id_15 {
      width: 90%;
      white-space: normal;
    }

    I have set the width to 90% so that it doesn't spill out of the form boundary.

    Also don't forget to enable form responsiveness in the preferences

    How to remove (reduce) the distance? Image 1 Screenshot 20

  • onitut
    Replied on July 14, 2015 at 9:28 AM

    thank you!