Link Colors

Link colors are set through a style.
Below is an example. The order is very important, so follow exactly the order you see below :

/* Setting link colors */
a:link {color:green;}    /* unvisited link */ 
a:visited {color:lime;}  /* visited links (are listed in the browser history)*/ 
a:focus {color:orange;}  /* link that would be selected if enter was pushed */ 
a:hover {color:red;}     /* link that has cursor over the top and would be  
                            selected if mouse button was clicked*/ 
a:active {color:red;}    /* active link (has been selected) */  

/* End of style sheet */