How do I change the size of my date boxes and delete the calendar icon in the configurable list widget?

  • info.grahambrown
    Asked on March 27, 2019 at 6:37 PM

    How do I change the size of my text and textarea boxes?

    5. How do I change the size of my date boxes and delete the calendar icon?

  • Jed_C
    Replied on March 27, 2019 at 9:45 PM

    It's currently not possible to adjust this on a Card layout. The widget will only add a scrollbar below so you can scroll through your fields.

    1553737435The Easiest Online Form Builde Screenshot 10

    With classic layout, you can adjust it with CSS. If you decided to change layout, please refer to this guide https://www.jotform.com/help/488-How-to-Change-Form-Layout.

    Let us know if you have any questions or if you need further assistance. 

  • info.grahambrown
    Replied on March 31, 2019 at 6:05 PM

    Are you able to help me with what the CSS code would be?

  • Kiran Support Team Lead
    Replied on March 31, 2019 at 11:30 PM

    I believe that this thread is about to the calendar icon in the configurable list widget since the issue with the text boxes is being addressed on the other thread  https://www.jotform.com/answers/1774195.

    You may try adding the following CSS code to the custom CSS section of the configurable list widget to hide the calendar icon and width of the dropdown fields.

    .calendarIcon {

        display: none;

    }

    select.d {

        width: 15%;

    }

    select.m {

        width: 50%;

    }

    select.y {

        width: 25%;

    }

    Thanks!