Далее удаляет фиксированные атрибуты из элемента управления 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 smallest settings */
.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;
}