Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/11/2004, 15:25
Avatar de iconogt
iconogt
 
Fecha de Ingreso: septiembre-2004
Ubicación: Guatemala
Mensajes: 576
Antigüedad: 19 años, 8 meses
Puntos: 4
Cita:
Iniciado por pons28
El tema es que hay algunos enlaces que quiero que tengan otros colores.... es esto posible?
Si, eso se hace con CSS (cascading style sheets) aquí te dejo un ejemplo... copialo y pegalo dentro de las etiquetas <head> y </head>

Código:
<style type="text/css">
<!--
     A:link {font-family: Verdana,Arial;
               font-size:12px;
               color: #/***aquí tu color***/;
               text-decoration: none;
          }

     A:active {font-family: Verdana,Arial;
               font-size:12px;
               color: #/***aquí tu color***/;
               text-decoration: none;
          }

     A:visited {font-family: Verdana,Arial;
               font-size:12px;
               color: #/***aquí tu color***/;
               text-decoration: none;
          }

     A:hover {font-family: Verdana,Arial;
               font-size:12px;
               color: #/***aquí tu color***/;
               text-decoration: underline;
          }
-->
</style> 
Luego haces tus links como los harías normalmente y listo.
Slds...
__________________
_______
Jorge Rojas.