How to visible always calendar?

  • loafandsalt
    Asked on January 21, 2017 at 3:46 AM

    Hello.

    How to visible the calendar always on that i need position. (I atteched the image)

    I tryed this answer https://www.jotform.com/answers/379813-Date-picker-calendar-always-visible

    but, show the calendar each other position that accordingly smart phone, Ipad, PC.

    Please, help me.

    Thank you.

     

    Jotform Thread 1041819 Screenshot
  • Kevin Support Team Lead
    Replied on January 21, 2017 at 11:36 AM

    You may try injecting this CSS code to your form instead: 

    div.calendar.popup {

        display: inline-block !important;

        position: absolute !important;

        left: 370px !important;

        top: 474px !important;

    }

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

        div.calendar.popup {

            left: 0px !important;

            top: 420px !important;

        }

    }

    This one should display the form properly when viewing it in a desktop or mobile device. 

    Hope this helps.