Inventory Widget: Range steps

  • wretchid
    Asked on May 14, 2018 at 7:32 AM
    Is it possible to add a equal number range? I'm selling square meters to business and i need the range to be from 4 - 24 with equal intervals. i.e 2-4-6-8-10-12-14-16-18-20-22-24
  • Scott JotForm Developer
    Replied on May 14, 2018 at 7:35 AM

    By default, this widget is not offering stepping options.

    But as a fast workaround, you may use this CSS snippet:

    select option:nth-child(even) {
      display: none;
    }

    This will hide the odd values, and will look something like this:

    1526297717Screen Shot 2018 05 14 at 14 Screenshot 10

    Related Guide: How to Inject CSS Codes to Widgets

  • wretchid
    Replied on May 14, 2018 at 8:48 AM

    Thanks alot man, great costumer service, much appreciated!