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.

Resizing first/last name in form to fit widget size

  1. jmacmullen
    Member

    How do I resize the first name and last name for the newsletter registration on this page so they fit better in the widget. I'd like them to also keep the border and outline that is currently missing on the right.

    http://centraltexasperformingarts.com/

    Posted 12 years ago on Monday August 8, 2011 | Permalink
  2. Your theme is adding left/right padding to the inputs which is throwing the width values off. You can override that rule to remove the padding by adding this to the end of your theme stylesheet.

    [css]
    body .gform_widget .gform_wrapper .gform_body input[type="text"],
    body .gform_widget .gform_wrapper .gform_body textarea {
        padding: 5px 0!important;
    }

    screenshot: http://bit.ly/oRDih2

    It looks like there is also an height property on the containing div that you need to adjust so the form button doesn't get cropped off.

    Posted 12 years ago on Monday August 8, 2011 | Permalink