Form fields not adjusting their size in landscape mode of mobile phones

  • caustin
    Asked on September 21, 2016 at 3:44 PM

    When in landscape, the fields "dealiership" and "auction access ID" do not resize on mobile devices.  Can you help/

     

    Thanks,

     

     

  • Boris
    Replied on September 21, 2016 at 5:32 PM

    I have checked your form, and I see the fields are correctly re-sizing on mobile devices in portrait mode.

    The trouble with the landscape mode seems to be caused by your form having its fields limited to a maximum width of 300 pixels, so if you wanted your fields to always display at full available width, you'd need to inject some custom CSS into your form:

    .form-input.form-input, .form-input-wide.form-input-wide, .form-textbox, .form-textarea { max-width: none; }

    You can add the above CSS codes into your form either by following this guide, or by opening your form in the Designer and pasting them under the CSS tab:

    Form fields not adjusting their size in landscape mode of mobile phones Image 1 Screenshot 20

    Please try it out and let us know how it goes. Thank you.