I think this module is awesome. Is there a way to shrink the size of the reCaptcha "control" so it can fit in a smaller space?

Thanks for any help anyone can offer.

Comments

jrosen’s picture

Does anybody have any ideas on this?

robloach’s picture

You could use the custom style, and theme it yourself. Not sure how you'd get around changing the image that reCAPTCHA gives you though.

Ole Martin’s picture

Issue tags: +reCAPTCHA theming

Maybe 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.

jrosen’s picture

I 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."

hass’s picture

Issue summary: View changes
Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.

finex’s picture

Just add the data-size attribute and set to "compact". (See https://developers.google.com/recaptcha/docs/display).

samcohen’s picture

You can do this
#g-recaptcha {
transform: scale(.75);
transform-origin: 0 0 0;
}