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.

Form Spacing

  1. ibizworks
    Member

    Hello. On our site http://www.curbscapesdesign.com the GForm at the bottom right part of the page entitled "Free Estimates" looks great on Firefox, but in Explorer 7 there is an extra space or two after the title and before the form fields. Is there a way to fix this? Thanks.

    Posted 13 years ago on Tuesday April 19, 2011 | Permalink
  2. ibizworks
    Member

    Sorry, bottom left part of the page.

    Posted 13 years ago on Tuesday April 19, 2011 | Permalink
  3. The top spacing problem looks like you've got an empty form title or it's not displaying. The H3 element is there so it occupies space, but it's empty. You want to make sure that the display title option is set to no.

    You can adjust the form footer spacing by adding a conditional IE7 only comment in your page template or header.php file.

    <!--[if IE 7]>
    <style type=text/css">
    body #gform_wrapper_1 .gform_footer {
    	padding-bottom:0!important;
    	margin-bottom:0!important
    }
    </style>
    <![endif]-->

    If you're not familiar with IE conditional comments, you can find out more about them here.
    http://www.quirksmode.org/css/condcom.html

    Posted 13 years ago on Tuesday April 19, 2011 | Permalink