Text field is extra long on mobile

  • BizimTohumdan
    Asked on January 10, 2020 at 4:47 AM

    Hello 

    I had given width of 1 to Qty text field (Shown as "Adet")

    While desktop and tablet shows the width as 1, mobile as seen in the screenshot extends the field all the way.  Can we also have it shows as 1 width in mobile.


    Thank you

    Jotform Thread 2109470 Screenshot
  • Richie JotForm Support
    Replied on January 10, 2020 at 9:17 AM

    You may try to add this custom CSS in your form to change the width of your "Adet" input box.

    @media screen and (max-width: 480px) {
    .form-number-input,.form-textbox{
    width: 50px !important;
    }

    }

    Guide:https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    Please give it a try and let us know if the issue still remains.