Is there a way to adjust (widen) the First Name and Last Name fields ONLY on mobile?

  • toddwhitaker
    Asked on January 1, 2020 at 1:22 PM
    And the final thing - when you look at the fields directly below it - First Name and Last Name - they have a short width compared to space available on mobile view. Is there a way to adjust (widen) the First Name and Last Name fields ONLY on mobile?

    Thanks

  • Ivaylo JotForm Support
    Replied on January 1, 2020 at 2:04 PM

    Please try to use the following CSS code:

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

    #first_122 {

        width: 50px !important;

    }

    #last_122 {

        width: 50px !important;

    }

    }

    You can further adjust the values for the width.

    Let us know, if it helps.