Ver Mensaje Individual
  #10 (permalink)  
Antiguo 20/05/2008, 14:55
Avatar de [NiRVaNa]
[NiRVaNa]
 
Fecha de Ingreso: abril-2004
Ubicación: Someplace In The Middle Of Nowhere!
Mensajes: 325
Antigüedad: 20 años
Puntos: 6
Respuesta: Solucion XHtml ? Alguna Solucion

o tambien...

Código HTML:
<div style="text-align: center;">Coontenido</div> 
Con respecto a tu segundo error... Fijate en el DOCTYPE, se ubica por encima de la etiqueta de inicio de HTML.

Seguramente tendrás algo asi (Strict):
Código HTML:
<!doctype html public "-//w3c//dtd xhtml 1.0 strict//en"
    "http://www.w3.org/tr/xhtml1/dtd/xhtml1-strict.dtd"> 
Intenta cambiando por esta (Transitional):
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
y vuelve a validar, si de esa manera sigue marcandote error el target, tendrás que quitarlo y usar alguna otra forma de abrir una pagina nueva. O usar el doctype de HTML 4 que si lo soporta...

Última edición por [NiRVaNa]; 20/05/2008 a las 15:01