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?
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?
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;
}
That worked. I just took out the fade. Thank you SOOOO Much.