Ver Mensaje Individual
  #5 (permalink)  
Antiguo 04/02/2004, 11:58
Avatar de Harper
Harper
 
Fecha de Ingreso: diciembre-2003
Ubicación: Lima
Mensajes: 60
Antigüedad: 20 años, 4 meses
Puntos: 0
Hola Tunait, tienes razon como siempre!! ... con ayuda del codigo que me dio JavierB pude hacer que estaba buscando, aqui les paso a todos un ejemplo de como indicar si algun vinculo ha sido visitado o no con imagenes... Gracias javierB y Tunait un beso para ti !

<html>
<head>
<STYLE type="text/css">
A:visited {
color:5895CB ; TEXT-DECORATION: none ; font-size:10pt
}
a.icono {
background-image:url('cerrado.gif')
}
a.icono:visited {
background-image:url('abierto.gif')
}
</STYLE>
</head>

<body>
<center>
<table border="1" width="296" height="108">
<tr>
<td width="66" height="15">
<a class=icono href=pagina1.htm>

<&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;>

</a>
</td>
<td width="214" height="15">
<a href="pagina1.htm">Link</a>
</td>
</tr>
<tr>
<td width="66" height="17">

<a class=icono href=pagina2.htm>
<&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;>
</a>
</td>
<td width="214" height="17">
<a href="pagina2.htm">Link2</a>
</td>
</tr>
</table>
</center>
</body>

</html>

Las imagenes:
abierto.gif
cerrado.gif

OjO :
< > signica espacios en balnco & nbsp;

Última edición por Harper; 04/02/2004 a las 12:45