Need to modify the width of only one field.

  • HRSSJotform
    Asked on March 30, 2016 at 6:01 PM

    I used the designer tool to remove the space between lines, but it "set" the width of the fields at the same time. Its fine except for one that needs to be bigger. 

    Need to modify the width of only one field Screenshot 20

  • Chriistian Jotform Support
    Replied on March 30, 2016 at 10:39 PM

    You can inject the css code below to increase the width of the Appointment Duration field.

    #cid_7 {

        width: 390px;

        max-width: 390px!important;

    }

    #input_7{

        width: 390px;

        max-width: 390px!important;

    }

    The form should now look like the screenshot below.

    Need to modify the width of only one field Screenshot 20

    Do let us know if you need further assistance.
    Regards.

     

  • HRSSJotform
    Replied on March 31, 2016 at 1:09 PM

    Perfect, thanks!