Reputation: 8219
I am used this tutorial http://www.dotnetcurry.com/ShowArticle.aspx?ID=611 to start with ReCaptcha helper ReCaptcha Web Helper in ASP.NET MVC 3 RC
By default ReCapthca looking a bit ugly and big,
i want to make that a bit simpler/smaller, remove play sound and other buttons, something like that:
May be some one may have an idea how can i do that?
Upvotes: 0
Views: 1245
Reputation: 1039318
You could specify the clean theme as shown in the documentation:
@ReCaptcha.GetHtml(theme: "clean")
Upvotes: 2