/ / google captcha se muestra distorsionado - javascript, php, jquery, acordeón, captcha

google captcha se muestra distorsionado - javascript, php, jquery, acordeón, captcha

Tengo un formulario de contacto con Google captcha.Dentro de una sección de acordeón JQuery y la recaptcha se muestra distorsionada. Sospecho que algún conflicto JS es la razón, pero no estoy seguro. ¿Alguien tiene alguna idea?

No puedo publicar imágenes todavía, puedes verlas en http://trcont-ekb.ru/contacts.php

Aquí está el código:

<form action="sendmessage.php" method="POST">
<fieldset>
<table style="border:none; border-spacing: 0px; padding:0px; width:450px; font-size:14px; font-family:calibri,sans-serif;">
<tr>
<td height="30" style="text-align:right; vertical-align:top;"><label for="name">Имя:*</label></td>
<td><input type="text" required name="name" size="30" /></td></tr><br />
<tr><td height="30" style="text-align:right; vertical-align:top;"><label for="phone">Телефон:*</label></td>
<td><input type="text" required name="phone" size="30" /></td></tr><br />
<tr><td height="30" style="text-align:right; vertical-align:top;"><label for="email">Ваш e-mail:*</label></td>
<td><input type="email" required name="email" size="30" /></td></tr><br />
<tr><td height="30" style="text-align:right; vertical-align:top;"><label for="where">Выберите адресата:*</label></td>
<td><select style="width:237px; height:24px;" required name="where" >
<option value="">---------</option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
</select></td></tr><br />
<tr><td height="30" style="text-align:right; vertical-align:top;"><label for="messsage">Ваше сообщение:*</label></td>
<td><textarea rows="10" cols="30" required name="message" id="message"></textarea></td></tr></table><br />
<div align="center">
<div id="captcha">
<?php
require_once("recaptchalib.php");
$publickey = "123456789";
echo recaptcha_get_html($publickey);
?>
</div>
</div>
<br /><input type="submit" name="submit" value="Отправить сообщение" id="submit" /><br />
</fieldset>
</form>

Respuestas

1 para la respuesta № 1

retirar tr { height: 2em; } o anularlo con height: auto para filas de tablas dentro de #captcha.