Change the height of the Short Text Entry only?

  • JanaJot
    Asked on April 22, 2018 at 2:17 PM

    How can I only change the height and width of the short text entry?

    When i'm in the advanced designer i'm changing the "text area height" under the textbox styles it changed both the height of the short text entry and long text entry as well.


    Thank you,

    Sharifah

  • Adrian
    Replied on April 22, 2018 at 2:41 PM

    You can change the width and the height of a field by injecting custom CSS to your form.

    First, get the ID of the field that you want to make adjustments to.

    Help Article: How-to-Find-Field-IDs-and-Names

    Then inject the CSS into your form.

    Help Article: How-to-Inject-Custom-CSS-Codes

    #input_7 {
      width: 100%;
      height: 50px;
    }

    This would change the width of the field with the ID "input_7" to 100 percent and the height to 50 pixels.

    Let us know if you need further assistance.

  • JanaJot
    Replied on April 22, 2018 at 3:08 PM

    Thank you!!!