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.

change height of cell

  1. cuddysteph
    Member

    How can i change the height of the fill the cell where people put there answer ?

    Posted 11 years ago on Thursday April 11, 2013 | Permalink
  2. If you wanted to change the height of all the text inputs then you would add something like this to the end of your theme stylesheet.

    [css]
    body .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
    body .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
    body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
    body .gform_wrapper .gform_body .gform_fields .gfield input[type=url],
    body .gform_wrapper .gform_body .gform_fields .gfield input[type=number],
    body .gform_wrapper .gform_body .gform_fields .gfield input[type=password] {
    	height: 24px;
    }

    If you need more examples, you can find those here..

    http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples

    Posted 11 years ago on Thursday April 11, 2013 | Permalink