Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/10/2007, 07:37
Avatar de javioreto
javioreto
 
Fecha de Ingreso: enero-2005
Ubicación: C:\España\Bilbao
Mensajes: 1.212
Antigüedad: 19 años, 3 meses
Puntos: 15
Re: Color de enlace - Netscape

Saludos, lo que tines que hacer es ponerle estilos CSS, esto lo debes poner dentro del <head>, el color lo puedes cambiar por el que quieras.

<style type="text/css">
a:link {
color: #FFFFFF;
text-decoration: none;
font-weight: bold;
}
a:visited {
text-decoration: none;
color: #FFFFFF;
font-weight: bold;
}
a:hover {
text-decoration: none;
color: #006A99;
font-weight: bold;
}
a:active {
text-decoration: none;
color: #FFFFFF;
font-weight: bold;
}
</style>