Ver Mensaje Individual
  #7 (permalink)  
Antiguo 01/03/2011, 03:53
Avatar de tranzorx
tranzorx
 
Fecha de Ingreso: marzo-2008
Mensajes: 114
Antigüedad: 16 años, 1 mes
Puntos: 7
Respuesta: Deubrir error de validación W3C en plantilla WordPress.

Hola.
He solucionado todos los errores de la plantilla principal salvo uno que no comprendo muy bien.
Yo la verdad es que no veo la anomalía por ninguna parte, pero os pongo aquí la documentación a ver si veo la luz y de paso aprendo.

Me gustaría saber si Dreamweaver lleva alguna funcionalidad que te diga los errores y cómo corregirlos.
Si es así, agradecería que se lo más explícita posible. Apenas llevo unos días con Dw y todavía no sé muy bien el manejo.

Saludos y muchas gracias por vuestra colaboración.

ERROR DEL VALIDADOR.
Cita:
Validation Output: 1 Error

1. Error Line 110, Column 7: end tag for "ul" which is not finished

</ul>

Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.
CÓDIGO FUENTE DE LA PÁGINA QUE ARROJA EL ERROR.
Cita:
106 <!--recent posts-->
107# <li>
108 <h2>Latest Products</h2>
109 <ul>
110 </ul>
111 </li>
112
113 <!--list of categories, order by name, without children categories, no number of articles per category-->
114 <li>-
115 <h2>By Category</h2>
116 <ul>
117 <li>No hay categorías</li> </ul>
118 </li>

CONTENIDO ARCHIVO I_SIDEBAR.PHP

Cita:
106 <!--recent posts-->
107 <li>
108 <h2>Latest Products</h2>
109 <ul>
110 </ul>
111 </li>
112
113 <!--list of categories, order by name, without children categories, no number of articles per category-->
114 <li>-
115 <h2>By Category</h2>
116 <ul>
117 <li>No hay categorías</li> </ul>
118 </li>