ASPX .
$(document).bind('pageinit', function () {
var cell = $('#recaptcha_response_field');
cell.removeAttr('style');
cell = $('.recaptcha_image_cell');
cell.addClass('CaptchaCell');
cell.removeAttr('width');
cell = $('#recaptcha_image');
cell.addClass('CaptchaWidth');
cell.removeAttr('style');
cell = $('#recaptcha_image img');
cell.addClass('CaptchaWidth');
cell.removeAttr('width');
cell.removeAttr('height');
cell.removeAttr('style');
});
CSS, Captcha . ...
.CaptchaCell {
width: 202px;
}
.CaptchaWidth {
width: 200px;
height: 57px;
}
.recaptchatable {
width: 252px;
}
#recaptcha_response_field {
width: 200px;
border: 1px solid #3c3c3c;
}
#recaptcha_tagline {
display:none;
}
#recaptcha_logo {
display:none;
}