在asp.net表单上调整reCaptcha的大小

时间:2014-06-24 11:02:34

标签: css asp.net recaptcha

我在一张效果很好的表单上放了一个验证码控件。

            <recaptcha:RecaptchaControl ID="recaptcha" runat="server" PublicKey=""
            PrivateKey="" Theme="white" />

任何人都知道如何调整大小,主要是宽度。这可能会在移动网站上使用,需要更小一些吗?

谢谢,

3 个答案:

答案 0 :(得分:0)

在代码中添加以下CSS。

#recaptcha_image,  
#recaptcha_image img   
{  
width: 100px !important;  
cursor: pointer;  
}   

答案 1 :(得分:0)

您可以给出验证码所在的div的宽度

或者给你的验证码图像宽度提供css,如上所述。

按ID

#recaptcha , #recaptcha image
{
width : 180px;
}

或者你可以从c#

给出宽度

http://www.aspsnippets.com/Articles/How-to-implement-Captcha-in-ASP.Net.aspx

答案 2 :(得分:0)

这对我有用,并且有效地改变了整个控件的宽度,而不仅仅是图像

 #recaptcha_area
   {
         width: 250px !important;
   }

   #recaptcha_logo
   {
         display: none;
   }