My date and time fields are not visible on my iphone

  • psmgpy
    Asked on June 22, 2017 at 1:54 PM

    On my Estacienomiento movil form when I look at the form the date date field is to small, is there way to adjust the field dimensions?

  • David JotForm Support Manager
    Replied on June 22, 2017 at 3:07 PM

    Please inject the following CSS code to make your form more mobile responsive:

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

    .form-textarea,.form-textbox,.form-dropdown{

    width: 100% !important;

    }

    .form-section {

        padding: 0px 2px 0px 2px !important;

    }

    .form-textbox validate[limitDate]{

        width: 100px !important;

    }

    [data-type="control_datetime"].allowTime .form-sub-label-container {

        width: 30%  !important;

        margin-right: 3%;

    }

    [data-type="control_datetime"].allowTime .allowTime-container .form-sub-label-container:first-child {

        width: 15%  !important;

        margin-left: 0%  !important;

     

    }

    }

    Let us know if you need more help.