How do I create a header within a field of mandatory answers and not having the radio buttons on that line?

  • Sylviesimard9999
    Asked on September 5, 2024 at 6:31 AM

    How do I create a header row with a title without the radio buttons that are applied to the questions below that header row?

  • Arthur JotForm Support
    Replied on September 5, 2024 at 9:05 AM

    Hi Sylviesimard9999,

    Thanks for reaching out to Jotform Support. If I understand you correctly, you want to add a header row right above the questions, and you don't want radio buttons near the header row with the title. You can add custom CSS codes to your Input Table element and solve it. Let me show you how you can set it up:

    First, copy the code below:

    #cid_4 > table > tbody > tr.form-matrix-tr.form-matrix-header-tr > th.form-matrix-th:after {
    content: "HEADER TEXT";
    transform: translate(-11px, -23px);
    background-color: #dddddd !important;
    padding-top: 12px !important;
    border: solid #d1d1d1 1px !important;
    position: absolute;
    width: 432px;
    height: 61px;
    padding-left: 4px;
    }

    Now follow these steps, and inject the code to your form:

    1. In Form Builder, click on the Paint Roller icon on the right side of the page.
    2. In the menu that opens on the right, under the Styles tab, delete the previous code, and paste the code that I provided above.

    How do I create a header within a field of mandatory answers and not having the radio buttons on that line? Image 1 Screenshot 20 You can also see how it looks on my end above.

    Give it a try and let us know how it goes.

Your Answer