When I view my form on mobile the text area is cut off

  • mitchellCRA
    Asked on July 14, 2016 at 6:44 PM

    When my form is viewed on mobile it does not shrink to fit the screen and the text area is cut off, preventing you from viewing the entire text.

  • Mike
    Replied on July 14, 2016 at 8:39 PM

    The text area is supposed to be scrollable in the same way as on the desktops, and it seems to be working properly on my mobile device. There is a width issue caused by added CSS, in order to fix this, please also add the next mobile CSS to the form.

    @media only screen and (max-device-width: 550px){
    #input_51 {
    min-width : inherit;
    }
    .form-checkbox-item {
    min-width : inherit;
    }
    }

    When I view my form on mobile the text area is cut off Image 1 Screenshot 20

    If you need any further assistance, please let us know.