Button Radios widget: How to remove the arrow at the bottom button

  • zahidvs14
    Asked on April 28, 2025 at 9:09 AM
    I want to change hight of optons boxes in line radio boxes also remove blue arrow in options
  • Jan JotForm Support
    Replied on April 28, 2025 at 9:35 AM

    Hi Zahid,

    You can add the custom CSS code to each widget to remove the blue arrow at the bottom of the button.

    .blue .actviv_elem {
      background: none !important;
    }

    Let me show you how to add this to your widget:

    1. In Form Builder, select the widget.
    2. Click on Wand icon.
      Button Radios widget: How to remove the arrow at the bottom button Image 1 Screenshot 40
    3. Go to custom CSS tab.
    4. Paste the code.
      Button Radios widget: How to remove the arrow at the bottom button Image 2 Screenshot 51
    5. You need to do this and add the custom CSS code to each of the widget.

    I created a screencast of the result on my cloned test form:

    Button Radios widget: How to remove the arrow at the bottom button Image 3 Screenshot 62

    Give it a try and let us know if you need any help.


  • zahidvs14
    Replied on April 28, 2025 at 10:30 AM

    Button Radios widget: How to remove the arrow at the bottom button Image 1 Screenshot 20how to make hight smaller

  • Jan JotForm Support
    Replied on April 28, 2025 at 11:30 AM

    Hi Zahid,

    You can use this custom CSS code to adjust the height of the button

    /* button height adjust - 26536611 */
    .wrapperButtonRadio {
      height: 35px !important;
    }
    /* codes end here - 26536611  */

    Follow the guide I shared on my last post on how to add the custom CSS code to the widget and let us know if you need further help. Here's what it looks like on my cloned test form after applying the code:

    Button Radios widget: How to remove the arrow at the bottom button Image 1 Screenshot 20

    Give it a try and let us know if you need any help.

  • zahidvs14
    Replied on May 1, 2025 at 6:50 AM

    extend font here to make font one line


    Button Radios widget: How to remove the arrow at the bottom button Image 1 Screenshot 20

  • Jan JotForm Support
    Replied on May 1, 2025 at 8:39 AM

    Hi Zahid,

    I understand the issue, but I’ll need a bit of time to work out a solution. I’ll get back to you shortly.

  • Jan JotForm Support
    Replied on May 1, 2025 at 9:19 AM

    Hi Zahid,

    Can you check my cloned test form and see if that works for you? If yes, here's what I did to the cloned test form:

    1. In Form Builder, select the Button Radio widget.
    2. Click on Gear icon to open the widget settings.
    3. Change the width to 190px.
    4. Click on Update button to save.

    Button Radios widget: How to remove the arrow at the bottom button Image 1 Screenshot 20

    After doing that, you need to add this custom CSS code to the form:

    /* Label width one line - 26536611 */
    div#cid_19 {
      width: auto;
    }
    label#label_19 {
      width: 330px;
    }
    div#cid_20 {
      width: auto;
    }
    label#label_20 {
      width: 330px;
    }
    div#cid_21 {
      width: auto;
    }
    label#label_21 {
      width: 330px;
    }
    div#cid_22 {
      width: auto;
    }
    label#label_22 {
      width: 330px;
    }
    /* code ends here - 26536611 */


    You can follow the guide on my previous post on how to add the custom CSS code to the form. Give it a try and let us know if you need any help.

  • zahidvs14
    Replied on May 1, 2025 at 11:09 AM

    https://form.jotform.com/251184546252456


    Why alighment auto changes?

  • Ronald JotForm Support
    Replied on May 1, 2025 at 11:51 AM

    Hi Zahid,

    Unfortunately, it is not possible to align the text into a single field together with the buttons, as the width for the fields is not enough, causing it to break into two lines.

    Meanwhile, you can try using the code below, as it utilizes the empty space and breaks the text into two lines minimally while still keeping the buttons on the same line.

    li#id_19,li#id_20, li#id_21,li#id_22 {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    See the screenshot below for the results: Button Radios widget: How to remove the arrow at the bottom button Image 1 Screenshot 20

    Let us know if you need any more help.

  • oneclickmedias
    Replied on May 1, 2025 at 4:13 PM

    on mobile layout changes in two rows yes on top and no oon bottom. it should not be such

  • zahidvs14
    Replied on May 1, 2025 at 4:15 PM

    Button Radios widget: How to remove the arrow at the bottom button Image 1 Screenshot 20on mobile layout changes in two rows yes on top and no oon bottom. it should not be such

  • Ronald JotForm Support
    Replied on May 1, 2025 at 4:37 PM

    Hi Zahid,

    Can you share which type of device you're using so I can test it as well? Meanwhile, We can shorten the length of the button so it does not change its orientation when using a mobile device. You can use the code below to and insert it to the widget CSS tab to achieve the result.

    @media (max-width: 600px) {
      .wrapperButtonRadio,
      .wrapperButtonRadio label {
        width: 120px !important;
      }
    }

    See the comparison on the screenshot below:

    Button Radios widget: How to remove the arrow at the bottom button Image 1 Screenshot 20

    Keep us updated and let us know if you need any more help. 

  • zahidvs14
    Replied on May 5, 2025 at 4:33 AM

    alighment issue in your screenshot

  • Lorenz JotForm Support
    Replied on May 5, 2025 at 5:12 AM

    Hi Zahid,

    I'll need a bit of time to look into your form, and I'll be back as soon as I can.

    Thanks for your patience and understanding, we appreciate it.

  • Lorenz JotForm Support
    Replied on May 5, 2025 at 7:36 AM

    Hi Zahid,

    You can add the code below to into the Button Radio widgets. It should help with the alignment issues and width of the button.

    .rowButtonRadio {
    display: flex;
    }
    .wrapperButtonRadio {
    display: block;
    width: calc(50% - 8px!important;
    }

    Check out my result:

    Button Radios widget: How to remove the arrow at the bottom button Image 1 Screenshot 20

    Give it a try and let us know if you need any more help.

Your Answer