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.

Captcha refresh not working.

  1. gr33n3ggz
    Member

    On my paypal form I use captcha. I have used chrome, firefox, and Safari to check the issue.
    If you hit the button to refresh the captcha, or Get a new Challange, the box goes blank. You don't get a new graphic/text.

    Anyone else seeing this?

    http://gypsyrosetrip.com/sponsorship/

    Posted 11 years ago on Thursday March 28, 2013 | Permalink
  2. It's a problem with your theme CSS. The new CAPTCHA image is there, it just has the opacity set to zero. You can find the offending CSS rule on line 41 of your theme's main.css file.

    http://gypsyrosetrip.com/wp-content/themes/launcheffect/premium/ss/main.css?ver=1.0.0

    [css]
    /* #To Fade In On Load
    ================================================== */
    
    	#nav-responsive,
    	#wrapper header,
    	#hero,
    	#sidebar,
    	#main,
    	#main img {
    		opacity:0;
    	}

    if you disable that, the CAPTCHA image refreshes and displays properly.

    You can always try overriding it with better inheritance by placing something like this at the end of your theme stylesheet or wherever you put your custom CSS rules.

    [css]
    body .gform_wrapper img {
    	opacity:1.0 !important;
    }
    Posted 11 years ago on Thursday March 28, 2013 | Permalink
  3. gr33n3ggz
    Member

    That worked. I just took out the fade. Thank you SOOOO Much.

    Posted 11 years ago on Thursday March 28, 2013 | Permalink

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