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.

Really Simple Captcha

  1. Is there a way to align the Captcha and input box on the same line and reduce the height of the Captcha.

    Posted 11 years ago on Thursday April 4, 2013 | Permalink
  2. I was able to reduce the height of the Captcha.

    Posted 11 years ago on Thursday April 4, 2013 | Permalink
  3. David Peralty

    Glad you were able to figure it out. Pretty much everything can be done through CSS, but sometimes you'll need to add an !important tag before the semi-colon to get it to work as expected. All my best!

    Posted 11 years ago on Thursday April 4, 2013 | Permalink
  4. David,
    I don't know what to edit to make the captcha and textbox align on the same line.

    Posted 11 years ago on Thursday April 4, 2013 | Permalink
  5. David Peralty

    Can you link to your form so one of our support people can take a look and see what CSS magic they would have to do?

    Posted 11 years ago on Thursday April 4, 2013 | Permalink
  6. David Peralty

    If you float: left the CAPTCHA, then you should have the Captcha next to the input, and can continue to style from there.

    .gform_wrapper .gfield_captcha_container img.gfield_captcha {
    border: none !important;
    background: none !important;
    float: left !important;
    margin: 0 !important;
    padding: 0 !important;
    }
    Posted 11 years ago on Thursday April 4, 2013 | Permalink
  7. First I assume that I add your code to the theme style.css. Doing so nothing happened.

    Posted 11 years ago on Friday April 5, 2013 | Permalink