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.

Shortening the height of a paragraph text box

  1. bigmaxsstudio
    Member

    How do I make the paragraph text box height shorten and is there a way to tighten up the entire form.

    http://hdrewromanovitz.com

    Thanks,

    Patti

    Posted 11 years ago on Monday June 4, 2012 | Permalink
  2. Patti, each form element has it's own ID, for example, viewing the source will show that this field's ID is: input_2_5, meaning you could drop this into your theme's stylesheet to adjust the height of just that field:

    [css]
    #input_2_5 {
    height: 100px;
    }

    Style and targeting documentation can be found here: http://www.gravityhelp.com/documentation/page/Design_and_Layout

    Also, inspecting elements via Google Chrome Developer Tools or Firebug for Firefox works great too.

    Posted 11 years ago on Monday June 4, 2012 | Permalink
  3. bigmaxsstudio
    Member

    Tried the above and that didn't work. Also in Chrome I get the I've read--- twice. I don't have a title in the field.

    Thanks,
    Patti

    Posted 11 years ago on Monday June 4, 2012 | Permalink
  4. Patti, I don't see that style declaration I provided being called in anywhere. Can you add it back in please and show me the stylesheet you are adding it to and how you are adding it. You can also try an !important declaration, but you really shouldn't need to since it has it's own unique ID.

    [css]
    #input_2_5 {
    height: 100px !important;
    }

    Also, I have no idea what you mean by: "Also in Chrome I get the I've read--- twice. I don't have a title in the field."

    Posted 11 years ago on Monday June 4, 2012 | Permalink