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!
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!
You should be able to use:
[css]
.gf_browser_ie7 .gform_wrapper .gform_footer {}
or
[css]
.gf_browser_ie7 .gform_footer input[type="submit"] {}
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.
Sure, to target just that specific button you could use:
[css]
.gf_browser_ie7 .gform_footer #gform_submit_button_13 {}
Perfect! Thanks again!
No problem, glad to help!