Date control in Configurable list: Possible to hide year?

  • paulshustak
    Asked on March 27, 2016 at 2:45 PM

    For this form I'm trying to save space: 

    https://form.jotform.com/60450675676160

    I would like to hide the year field (see screenshot).  Is this possible? 

    Thanks!

    Jotform Thread 803717 Screenshot
  • Kiran Support Team Lead
    Replied on March 27, 2016 at 3:13 PM

    You may hide the year dropdown by injecting the code below to the Custom CSS section of configurable list.

    select.y {

    display: none;

    }

    Date control in Configurable list: Possible to hide year? Image 1 Screenshot 30

    The date field should be displaying as shown below after injecting the CSS code.

    Date control in Configurable list: Possible to hide year? Image 2 Screenshot 41

    Hope this information helps! 

  • paulshustak
    Replied on March 27, 2016 at 4:36 PM

    Thanks.  Can you also tell me how to hide the calendar control?  

  • Kiran Support Team Lead
    Replied on March 27, 2016 at 5:06 PM

    You may also add the following code to the Configurable widget in order to hide the calendar icon.

    .calendarIcon {

    display: none;

    }

    Hope this information helps!