how to make configurable list mobile responsive

  • VanKesterenIT
    Asked on May 25, 2016 at 5:53 AM

    Hi,

     

    My form is mobile responsive but my configurable lists are not.

    Is there a way to make sure these are also mobile resonsive?

     

    Kind regards,

     

    Mathijs

  • beril JotForm UI Developer
    Replied on May 25, 2016 at 9:09 AM

    Can you add the css code below? 

    @media screen and (max-width: 480px), screen and (max-device-width: 768px) and (orientation: portrait), screen and (max-device-width: 415px) and (orientation: landscape){

    td {

    display: block !important;

    }

    }

    how to make configurable list mobile responsive Image 1 Screenshot 20

    If this does not resolve the issue, please let us know and we will be glad to take another look.

  • VanKesterenIT
    Replied on May 26, 2016 at 9:30 AM

    It helps a little :D

    The second and third column are now placed below the first when i hold the phone portrait. When i hold it landscape the second column is half visible and the third is not.
    Maybe a better option is to make the first column smaller, is that possible? It has the size of the largest text at this moment but that is no issue, the text to choose opens in a box witch works fine.

  • Huberson
    Replied on May 26, 2016 at 10:50 AM

    You can increase the form input max-width to fix it.

    .form-input{

        max-width: 340px;

    }

    This can also be done without CSS code from Designer.

    how to make configurable list mobile responsive Image 1 Screenshot 20