Closed (fixed)
Project:
reCAPTCHA
Version:
6.x-1.1
Component:
reCAPTCHA Captcha
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
17 Mar 2009 at 22:16 UTC
Updated:
25 Jan 2017 at 12:51 UTC
Jump to comment: Most recent
Comments
Comment #1
jrosen commentedDoes anybody have any ideas on this?
Comment #2
robloachYou could use the custom style, and theme it yourself. Not sure how you'd get around changing the image that reCAPTCHA gives you though.
Comment #3
Ole Martin commentedMaybe this can help you out (?) :
http://recaptcha.net/apidocs/captcha/client.html
When showing reCAPTCHA to the user, is it possible not to show the reCAPTCHA logo? We allow you to customize the theme of reCAPTCHA with our Client API. You are still required to have text on your website which states that you are using reCAPTCHA, however with our theming API, you are free to do this in a way that blends in to your site.
Comment #4
jrosen commentedI guess you can't make the Captcha smaller than 300x57 pixels:
"An empty div with ID recaptcha_image. This is where the actual image will be placed. The div will be 300x57 pixels."
Comment #5
hass commentedComment #7
finex commentedJust add the data-size attribute and set to "compact". (See https://developers.google.com/recaptcha/docs/display).
Comment #8
samcohen commentedYou can do this
#g-recaptcha {
transform: scale(.75);
transform-origin: 0 0 0;
}