Why is the full field not showing on my form

  • YouBelong
    Asked on May 16, 2018 at 5:38 PM

    The "Payment Term" field is not showing the values when the form is displayed vertically from a cell.  Landscape works fine.  I don't know how to change the length of the field.  Please advise.  -Thanks

  • jonathan
    Replied on May 16, 2018 at 7:45 PM

    Please inject the following CSS codes into your form.

    @media only screen and (min-device-width : 414px) and (max-device-width : 736px) {
     
    .form-all {
      width:100%;


    .form-product-custom_price{
      width:70px !important;
    }
     
    }

    1526514247zzz 2018 05 17 07 Screenshot 10


    it should work on mobile browser like this

    1526514270zzz 2018 05 17 07 Screenshot 21


    Let us know if issue persist.



  • YouBelong
    Replied on May 18, 2018 at 3:30 PM

    sorry, I can't seem to get this to work for me ... I'm trying it on an iphone 5S

    1526671816IMG 2227 Screenshot 10

  • jonathan
    Replied on May 18, 2018 at 4:00 PM

    I also see it now not rendering properly on iPhone 5S version

    1526673544zzz 2018 05 19 03 Screenshot 10


    to fix, please change the CSS codes to this

    @media only screen and (min-device-width : 320px) and (max-device-width : 568px) {
     
    .form-all {
      width:100%;


    .form-product-custom_price{
      width:70px !important;
    }
     
    }


    it should work like this

    1526673622zzz 2018 05 19 03 Screenshot 21


    Let us know if this still did not work.