How To Remove Extra Width From Radio Button Widget

  • zoiglobal
    Asked on June 19, 2018 at 6:29 PM

    Hello,

    Can someone guide me as to how to remove extra spacing to right side of Radio Button widget.  I would like to put my Clear Form button to top right side where extra space exists due to Radio Button widget.

    Thank you.

    Denise

    Jotform Thread 1503690 Screenshot
  • David JotForm Support Manager
    Replied on June 19, 2018 at 7:53 PM

    Try adding the following code: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    #id_120{

        width: 250px !important;

    }

    div#cid_120 div + span.form-radio-item:nth-of-type(2) {

        width: 50px !important;

    }

    div#cid_120 div + span.form-radio-item:nth-of-type(4) {

        width: 50px !important;

    }

    This should allow you to put another field next to that Multiple Choice field:

    1529452358fields Screenshot 10

    Let us know if you need more help.