How to format my form to properly display in mobile devices?

  • MarianaCCForm
    Asked on April 4, 2017 at 4:25 PM

    Hi I have a form that looks nice on a laptop or desktop but not looking great on mobile, can you please assist with the following:

    1. logo supper small on left

    How to format my form to properly display in mobile devices?  Image 1 Screenshot 40

    2. tabs not next to each other

    How to format my form to properly display in mobile devices?  Image 2 Screenshot 51

    3. other option delay not in the correct place 

    How to format my form to properly display in mobile devices?  Image 3 Screenshot 62

  • Kevin Support Team Lead
    Replied on April 4, 2017 at 9:03 PM

    Please, inject the following CSS code to display the fields as you need:

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

        .form-header-group.hasImage>.header-logo{

            display: initial;

        }

      .tabs-list li{

          width: 20%;

        height: 42px !important;

      }

      .tabs-list .liAfter{

             border-bottom-width: 54px !important;

      }

      #form-tab-1 .liAfter{

        border-bottom-width: 54px !important;

      }

      .tabs-list{

         margin: 0px !important;

      } 

      #input_36{

        width: 85% !important;

      }

    }

    Please, follow this guide in order to inject the code to your form: How-to-Inject-Custom-CSS-Codes

    Here's a cloned form of yours where you can see how the code will work: https://form.jotformpro.com/70938338478976 

    Hope this helps.