number the questions

  • bigbird122755
    Asked on February 1, 2017 at 3:48 PM
  • Kevin Support Team Lead
    Replied on February 1, 2017 at 4:14 PM

    I'm not sure if I could understood completely your question, but as I can understand you want to add a number to the questions you have in your form, if this is correct then you could inject this code:

    ul {

        counter-reset: item;

        list-style-type: decimal;

    }

    li.form-line:not([data-type="control_button"]):before {

        content: counter(item, decimal);

        counter-increment: item;

        margin-left: -15px;

        top: 12px;

        position: absolute;

    }

    Guide the inject the CSS code: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    This will be the result: number the questions Image 1 Screenshot 20

    You may also provide us more details about what you're looking for, we will be glad to help you.