Estoy intentando validar un blog de Wordpress para w3c, pero se me resisten dos errores, y esperaba que algunx de vosotrxs pudiera echarme una mano; son los siguientes:
Cita:
En ambos casos resalta el cierre de la etiqueta > ¿quiere decir que he de definir ahí el tamaño del campo; en ese caso cómo debería hacerlo?Validation Output: 2 Errors
1. Line 278, Column 49: required attribute "rows" not specified The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
2. Line 278, Column 49: required attribute "cols" not specified The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
1. Line 278, Column 49: required attribute "rows" not specified
Código PHP:
<textarea id="quickComment" name="comment">tu mensaje
2. Line 278, Column 49: required attribute "cols" not specified
Código PHP:
<textarea id="quickComment" name="comment">tu mensaje
Por cierto, las líneas salen de este formulario de contacto:
Código PHP:
<div id="quickContact">
<p id="success" class="successmsg" style="display:none;">Correo enviado. Gracias :)</p>
<p id="bademail" class="errormsg" style="display:none;">Debes escribir tu nombre, tu mensaje y tu e-mail.</p>
<p id="badserver" class="errormsg" style="display:none;">Error en el envío. Prueba más tarde :(</p>
<form action="<?php bloginfo('template_url'); ?>/sendmail.php" method="post" id="quickContactForm">
<div class="leftSide">
<input type="text" value="tu nombre" id="quickName" name="name" />
<input type="text" value="tu email" id="quickEmail" name="email" />
<input type="submit" name="enviar" id="submitinput" value="Send"/>
</div>
<div class="rightSide">
<textarea id="quickComment" name="comment">tu mensaje
</textarea>
</div>
<input type="hidden" id="quickReceiver" name="receiver" value="<?php echo get_option('boldy_contact_email')?>"/>
</form>
</div>