how to adjust the width of textfields

  • equator
    Asked on November 30, 2017 at 7:09 AM

    trying to enlarge the input field but changing the value doesnt adjust the width ??


    Get a Quote form

  • Richie JotForm Support
    Replied on November 30, 2017 at 8:32 AM

    You can adjust your textfields width using custom css, here is a guide:Custom-CSS-Codes

    Here is the css code for changing the textarea and textbox, You can adjust the max-width to your preference.

    .form-textbox,.form-textarea{
    width:300px;
    max-width: 300px;
    }

    Regards.