Submit Button Always Next to Form Field

  • AdminRSCM
    Asked on October 3, 2017 at 1:18 PM

    https://form.jotform.com/72755247758167


    On this form, is there a way to get the WIN button to always be next to the form field on every screen size? Right now at some screen sizes, the WIN button moves underneath the form field.

  • BJoanna
    Replied on October 3, 2017 at 1:54 PM

    Please add this CSS code to your form:

    @media screen and (min-width: 10px) and (max-width: 480px){

        .form-line {

            width : 77%!important;

            display : inline-block;

            padding : 0 0.4% !important;

            vertical-align : top;

        }

        li#id_2 {

            width : 65px!important;

        }

    }

    How to Inject Custom CSS Codes

    Here is my demo form: https://form.jotform.com/72755227979978 

    Feel free to test it and clone it

    Let us know if you need further assistance.