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.

Spacing And Lines

  1. Having a little trouble figuring out the spacing on the next button from the bottom of the message box and a line going through the email and phone for some reason.. Any ideas for the css to take care of this...

    This is a fan page so you may have to like to get to the contact form to see
    Form Link https://www.facebook.com/flysecure
    Thanks for any help...

    Screen Shot http://imm.io/e2rr

    Posted 12 years ago on Wednesday January 4, 2012 | Permalink
  2. Scott, you probably have a couple of options here.

    1 - You can get rid of the border by placing this into your theme's stylesheet:

    [css]
    #gform_wrapper_1 .gform_page_footer {
    border: none;
    }

    If you want to get rid of that globally in all forms you can be more vague:

    [css]
    .gform_wrapper .gform_page_footer {
    border: none !important;
    }

    If you want to keep the border then you can do this:

    [css]
    .gform_wrapper .gform_page_footer {
    clear: both;
    }
    Posted 12 years ago on Wednesday January 4, 2012 | Permalink
  3. Thanks Rob.... I still have the next button shoved up against the email field..... I tried
    .gform_next_button {padding-top:2cm;
    }

    but did not seem to affect it http://imm.io/e2rr

    Posted 12 years ago on Wednesday January 4, 2012 | Permalink
  4. Try replacing what you have with this:

    [css]
    .gform_wrapper .gform_page_footer {
    border: none !important;
    clear: both;
    }
    Posted 12 years ago on Wednesday January 4, 2012 | Permalink
  5. Ah! There we go, much appreciated... Thx

    Posted 12 years ago on Wednesday January 4, 2012 | Permalink
  6. Awesome, glad to help!

    Posted 12 years ago on Wednesday January 4, 2012 | Permalink

This topic has been resolved and has been closed to new replies.