Error accesibilidad. ID "node-title" already defined.
Sep
29
ERROR:
An "id" is a unique identifier. Each time this attribute is used in a document it must have a different value. If you are using this attribute as a hook for style sheets it may be more appropriate to use classes (which group elements) than id (which are used to identify exactly one element).
SOLUCIÓN:
En este caso la vista es un calendario que muestra los titulos de los nodos creados cada día. El problema está que todos los titulos tienen el mismo id: node-title. Una solución es
<div id="node-title" class="view-field view-data-node-title">
An "id" is a unique identifier. Each time this attribute is used in a document it must have a different value. If you are using this attribute as a hook for style sheets it may be more appropriate to use classes (which group elements) than id (which are used to identify exactly one element).
SOLUCIÓN:
En este caso la vista es un calendario que muestra los titulos de los nodos creados cada día. El problema está que todos los titulos tienen el mismo id: node-title. Una solución es