Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/12/2003, 05:36
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 2 meses
Puntos: 772
Hola, Miranda881.

A ver si te lo cuento sin liarme mucho:

- Busca en el código: <TR bgColor=#000099> y cambialo por <TR bgColor=#ffff00> (Lo tienes en 2 sitios)

- Busca también:

<STYLE>.hl {
CURSOR: hand;}
.n {
CURSOR: hand;
}
</STYLE>

Y lo pones:

<STYLE>.hl {
CURSOR: hand; background-color:red; color:white;
}
.n {
CURSOR: hand; background-color:white; color:red;
}
</STYLE>

- La línea:

if (document.all) {document.write('<TR><TD height=20 bgcolor=white onclick="navigateie('+i+')" onmouseover="className=\'hl\'" onmouseout="className=\'n\'"><FONT SIZE=2 FACE=ARIAL>&nbsp;'+text[i]+'</FONT></TD></TR>')}

debe quedar como:

if (document.all) {document.write('<TR><TD class="n" height=20 bgcolor=white onclick="navigateie('+i+')" onmouseover="className=\'hl\'" onmouseout="className=\'n\'"><FONT SIZE=2 FACE=ARIAL>&nbsp;'+text[i]+'</FONT></TD></TR>')}

- Y por último creo que esto:

else {document.write('<TR><TD bgcolor="white"><ILAYER><LAYER HEIGHT="18" onmouseover="this.bgColor=\yelow\'" onmouseout="this.bgColor=\'white\'" width=131><FONT SIZE=2 FACE=ARIAL>&nbsp;<A HREF="'+thelink[i]+'" target="'+linktarget+'" id="nounderline">'+text[i]+'</A></FONT></LAYER></ILAYER></TD></TR>')}

Tienes que ponerlo así:

else {document.write('<TR><TD class="n" bgcolor="white"><ILAYER><LAYER HEIGHT="18" onmouseover="this.bgColor=\yelow\'" onmouseout="this.bgColor=\'white\'" width=131><FONT SIZE=2 FACE=ARIAL>&nbsp;<A HREF="'+thelink[i]+'" target="'+linktarget+'" id="nounderline">'+text[i]+'</A></FONT></LAYER></ILAYER></TD></TR>')}

Si no has entendido algo o no te funciona, no dudes en volver a preguntar.

Saludos y Feliz Año.

P.D. Solo lo he probado en Explorer. Espero que funcione también en otros exploradores.