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.

IE7 Submit button placement

  1. Please see page here: http://www.iamsinc.com/seminarcoaching

    Everything is lined up properly except in IE7. See image here: http://imgur.com/swVTF

    How do I target this for IE7 to move it up?

    Thanks!

    Posted 11 years ago on Tuesday August 21, 2012 | Permalink
  2. You should be able to use:

    [css]
    .gf_browser_ie7 .gform_wrapper .gform_footer {}

    or

    [css]
    .gf_browser_ie7 .gform_footer input[type="submit"] {}
    Posted 11 years ago on Tuesday August 21, 2012 | Permalink
  3. Thank you for your quick response. After some playing around, I was able to get it to be in the correct position with
    '
    .gf_browser_ie7 .gform_footer input[type="submit"] {
    margin-top: -80px !important;
    }
    '

    Is there any way to have it target the submit button on that specific form only? I attempted adding '#gform_submit_button_13' befor the 'input[type="submit"]', but that didn't do it. After noticing this, I took at glance at some of my other forms in IE7 and their alignment is off too, but in different ways. Thanks again for your help. I know no one enjoys supporting this frustrating browser.

    Posted 11 years ago on Tuesday August 21, 2012 | Permalink
  4. Sure, to target just that specific button you could use:

    [css]
    .gf_browser_ie7 .gform_footer #gform_submit_button_13 {}
    Posted 11 years ago on Tuesday August 21, 2012 | Permalink
  5. Perfect! Thanks again!

    Posted 11 years ago on Tuesday August 21, 2012 | Permalink
  6. No problem, glad to help!

    Posted 11 years ago on Tuesday August 21, 2012 | Permalink

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