Date Picker not displaying correctly on IOS

  • Intracoastalrealty
    Asked on April 2, 2019 at 3:17 PM

    The display of the time is running off the right side of the screen in profile view.  Landscape is better, but still doesnt show correct.


    I tried adding some CSS code that I found on the support pages, but nothing seemed to fix it.  Also included the Mobile Response widget.


    Thanks for your help.

    Jotform Thread 1779997 Screenshot
  • Mike
    Replied on April 2, 2019 at 5:31 PM

    Please try adding the next CSS to move the time part to the left side:

    @media only screen and (max-device-width: 550px) {
    .allowTime-container {
    display: initial !important;
    }
    span.allowTime-container+span {
    width : 100% !important;
    float : left;
    margin-top : 0;
    }
    }