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.

input button css question

  1. chucktho
    Member

    I'm using the Headway framework. The form I'm having difficulty with is here - http://tbfaa.devsite103.com/tbfaa/tbfaa-training/texas-level-training/# I'm trying to get some space between the Paypal graphic and the "Continue to Paypal" button. I'm not proficient with css so I'm sure thats the problem. Below is one of the many things I've tried without success. Can you help?

    body.custom .gform_wrapper .gform_footer input.button {
    margin:0px 0px 0px 20px;
    }
    Posted 13 years ago on Wednesday December 15, 2010 | Permalink
  2. I'm not sure why the button is floating to the right of the image anyhow.. must be something strange in the new markup. If you want the button to be below the PayPal graphic as it normally would, add this to your custom CSS

    body .gform_wrapper .gform_footer {clear:both}

    screenshot: http://grab.by/7V9K

    or you can add this to reposition the button a little to the right

    body .gform_wrapper .gform_footer {
        float: left;
        margin: 16px 0 0 20px!important;
        width: auto;
    }

    screenshot: http://grab.by/7Va0

    Posted 13 years ago on Wednesday December 15, 2010 | Permalink
  3. chucktho
    Member

    Thank you Kevin. That worked perfectly.

    Posted 13 years ago on Thursday December 16, 2010 | Permalink