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/
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/
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.