How can i change width of textbox in short text entry?

  • stepconsultantjb
    Asked on April 24, 2019 at 10:33 PM

    In short text entry properties only have general, options and advanced section only. It doesn't have a CSS section for editing purpose. There has a width adjuster in the options section. But after changing the new amount of width, it not showing any different action on the text box. Please help. Thank you.

    1556159576Jotform Screenshot 10

  • Victoria_K
    Replied on April 25, 2019 at 3:03 AM

    For Short Text Entry fields, you can set the width via OPTIONS tab, here is a screenshot:

    How can i change width of textbox in short text entry? Image 1 Screenshot 20

  • stepconsultantjb
    Replied on April 25, 2019 at 3:06 AM

    Hi,

    Thank you for your respond. i already said that "after changing the new amount of width, it not showing any different action on the text box". So what another alternative for changing size of width? Thank you.

     

  • roneet
    Replied on April 25, 2019 at 4:54 AM

    If you want to increase the width in all of your textbox then you can inject the CSS in a single class.

    .form-textbox{

    width: 178px !important;

    }

    If you want to increase the width of a particular textbox then you would have to inject the CSS in the ID of that field.

    For example, the Id of the input field is:

    #input_372{

    width: 178px !important;

    }

    How can i change width of textbox in short text entry? Image 10

    Let us know if you have further questions.

    Thanks.