- This topic has 1 reply, 2 voices, and was last updated 12 years, 3 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › Recaptcha box is being cut off in right sidebar under squeeze form
The Recaptcha box is being cut off in right sidebar under squeeze form. This makes it impossible to read the words Recaptcha wants the user to input to make the squeeze form work correctly. Is there a way to resize the recaptcha box so it displays correctly?
You can view the issue at http://www.getthinnowhypnosis.com
The squeeze form is on the top right hand side of the page.
The reCAPTCHA box comes from Google’s API and it has a standard size of 320px. So if your sidebar is not wide enough, you should place the squeeze form with reCAPTCHA in the main post/page body.
Here is a small tweak that you can also apply to resize the reCAPTCHA verification image using CSS which might come in handy. Simply add the following CSS to any of your CSS file (the eStore’s custom CSS file will do):
#recaptcha_image img {
width: 200px;
}
Please note that it will make the image smaller so it can be harder to read the characters on it.