Como posso numerar as perguntas automaticamente?

  • Venino
    Perguntado em 29 de janeiro de 2024 às 13:52

    Preciso que aparecem os número da pergunta. Como faço?

  • Christian Jotform Support
    Respondido em 29 de janeiro de 2024 às 16:24

    Hi Julio,

    Thanks for reaching out to Jotform Support. Unfortunately, our Portuguese Support agents are busy helping other Jotform users at the moment. I'll try to help you in English using Google Translate, but you can reply in whichever language you feel comfortable using. Or, if you'd rather have support in Portuguese, let us know, and we can have them do that. But keep in mind that you'll have to wait until they're available again.

    Now, let me help you with your question. Currently, there is no auto-numbering feature available. The only options at the moment are manual, where you need to edit each form field label or question individually:

    Como posso numerar as perguntas automaticamente? Image 1 Screenshot 40

    Alternatively, you can employ custom CSS code to automate the numbering process, sparing you from manual adjustments. However, it's important to note that the numbering applied through CSS will only be visible on the form's front end and won't be included in the submission data.

    • Open the Form Designer by clicking the paint roller icon in the upper-right corner of the Form Builder.
    • Go to Styles at the top of the Form Designer pane on the right.
    • Scroll down to Inject Custom CSS and copy and paste the CSS code below into the text area.
    .form-all { counter-reset: question; }
    .form-line { counter-increment: question; }
    .form-line .form-label:before { content: counter(question) ". "; }
    • After you've injected the custom CSS codes, the changes will take effect automatically.

    Como posso numerar as perguntas automaticamente? Image 2 Screenshot 51

    Check out the results in the screenshot below after making the changes mentioned above:

    Como posso numerar as perguntas automaticamente? Image 3 Screenshot 62

    If that’s not exactly what you’re looking for, can you explain a bit more so I can help you better? Let us know if there’s anything else we can help you with.