There are a few options below that you using CSS by modifying the color to white can contribute.
If you want to change the color status on some link through mouse behavior, use:
a:link {
color: #;
}
/* Quando entra no no navegar carrega a tela a cor fica "00FF00" */
a:visited {
color: #00FF00;
}
/* Quando passa o mouse por cima a cor fica rosa */
a:hover {
color: #FF00FF;
}
/* Quando aperta o link a cor passa pra azul escuro */
a:active {
color: #0000FF;
}
You can also use these mouse events to add a underline under the word :
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
}
You can modify the background of the example word :
a:link {
background-color: #B2FF99;
}
a:visited {
background-color: #FFFF85;
}
a:hover {
background-color: #FF704D;
}
a:active {
background-color: #FF704D;
}
There are already many questions about this... uses CSS Transitions and gives a class with jQuery...
– Sergio
can make an example @Sergio ?
– Furlan