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.

No space between City and State fields

  1. For some reason there is no space between City and State and would like to remove the max character text that is displaying in the form.
    http://www.tommustopro.com/lighting-workshops/workshop-registration/

    Posted 11 years ago on Wednesday April 3, 2013 | Permalink
  2. David Peralty

    You have the following call in your CSS that is causing the spacing issue:
    margin: 0 !important;

    body .gform_wrapper form .gform_body ul, body .gform_wrapper form .gform_body ul li {
    list-style-type: none !important;
    list-style-image: none !important;
    list-style: none !important;
    background-image: none !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;

    And you can use:

    .ginput_counter { display: none; }

    to remove the counters.

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