Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to change the reCaptcha's style like stackoverflow and facebook

i dont like the red background ,and want to change the button to other place .

Is there a easy way to do this ?

Should i have to change the css style one by one ?

thanks

like image 736
zjm1126 Avatar asked Dec 12 '22 17:12

zjm1126


1 Answers

Read the documentation at http://code.google.com/apis/recaptcha/docs/customization.html

<script type="text/javascript">
 var RecaptchaOptions = {
    theme : 'theme_name'
 };
 </script>

it has four ready-made themes (red, white, blackglass, clean), and you can also create your own.

like image 58
Gabriele Petrioli Avatar answered Dec 29 '22 00:12

Gabriele Petrioli