Too small columns when opening on mobile phone

  • A_S_G
    Asked on August 22, 2017 at 5:32 AM
    Jotform Thread 1229296 Screenshot
  • nurulmac11
    Replied on August 22, 2017 at 8:29 AM

    This is because of false padding percentage in small devices.

    To fix it; 

    You must add this css to your form. You can learn how to add custom css to form, following by this guide.

    @media screen and (max-width: 480px), screen and (max-device-width: 767px) and (orientation: portrait), screen and (max-device-width: 415px) and (orientation: landscape) { table td + td {

         padding-left: 0 !important;

    }

    }

     

    I hope this helps.

  • A_S_G
    Replied on August 22, 2017 at 10:53 AM

    Thank you. This has improved the form a bit but still middle columns are showing as too narrow. I chose the first and last column width 250px n middle ones 150px but you can see middle ones are way too small than the first and last when opened on a mobile phone

  • Chriistian Jotform Support
    Replied on August 22, 2017 at 12:04 PM

    Can you please try to inject the following custom CSS code on your form and see if this will fix the issue?

    .form-matrix-table td {

        min-width: 50px;

    }

    Too small columns when opening on mobile phone Image 1 Screenshot 20