How do I make the paragraph text box height shorten and is there a way to tighten up the entire form.
Thanks,
Patti
How do I make the paragraph text box height shorten and is there a way to tighten up the entire form.
Thanks,
Patti
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.
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
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."