PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Paragraph Text box height/width

  1. I have a two column form set up with a text box at the bottom. I can't figure out how to make the paragraph text box the same width as the two columns and then I would also like to make the height less as well.

    Here is my current form.
    http://internetperformance.net/2010/solutions/logo-design.html

    Thanks.

    Posted 11 years ago on Saturday September 15, 2012 | Permalink
  2. Try adding this to your theme's custom.css or wherever you can add custom CSS rules as directed by the theme provider:

    [css]
    body .gform_wrapper .top_label textarea.textarea {
        width: 99.2%!important;
        height: 100px!important;
    }

    That makes it a wide as the side by side fields, and 40% of the height. You can change those figures if you like. That will affect all the paragraph inputs in Gravity Forms.

    Posted 11 years ago on Saturday September 15, 2012 | Permalink