Joper
Joper

Reputation: 8219

Style and customize ReCaptcha from MVC 3.0 Web Helper

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,

enter image description here

i want to make that a bit simpler/smaller, remove play sound and other buttons, something like that: enter image description here

May be some one may have an idea how can i do that?

Upvotes: 0

Views: 1245

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1039318

You could specify the clean theme as shown in the documentation:

@ReCaptcha.GetHtml(theme: "clean")

Upvotes: 2

Related Questions