WebSite X5Help Center

 
Jose Luis Lisorio
Jose Luis Lisorio
User

COLOR DE LOS ENLACES ACTIVOS DE TEXTO  es

Author: Jose Luis Lisorio
Visited 1049, Followers 1, Shared 0  

Hola como puedo hacer para que los enlaces de texto tengan un color diferente ya que si los configuro de un color y quiero que que alla enlaces con 2 colores diferentes no me permite.

Posted on the
3 ANSWERS - 1 CORRECT
CARLOS AMARAL
CARLOS AMARAL
Moderator
Best User of the month ESBest User of the month PT

Hola José Luis, eso lo tienes que hacer generando el link mediante html directamente, por lo que te paso un ejemplo:

__________________________________________________________

<html>
<head>
<style>
a:link {
    color: green;
    background-color: transparent;
    text-decoration: none;
}
a:visited {
    color: pink;
    background-color: transparent;
    text-decoration: none;
}
a:hover {
    color: red;
    background-color: transparent;
    text-decoration: underline;
}
a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
}
</style>
</head>


<body>

<p>Cambiar los colores de los links</p>

<a href="http://www.carlos-amaral.com" target="_blank">Mi Sitio Personal</a>

</body>

</html>

___________________________________________________________

Si la informacion te ha sido de ayuda no olvides presionar la manito verde, o la opcion CORRECTO como forma de agradecimiento.

Saludos

Carlos A.

Read more
Posted on the from CARLOS AMARAL
Jose Luis Lisorio
Jose Luis Lisorio
User
Author

Muchas gracias Carlos y te hago una consulta este codigo html lo pego en un objeto html en el lugar que yo quiera colocar el ipervinculo?

Read more
Posted on the from Jose Luis Lisorio
CARLOS AMARAL
CARLOS AMARAL
Moderator
Best User of the month ESBest User of the month PT

Exactamente José,

Y obviamente cambiando todo lo que quieras segun tus necesidades, colores, url... etc... (o te va a quedar con publicidad a mi sitio web jajajaaa)...

Saludos colega!

Read more
Posted on the from CARLOS AMARAL