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