CSS » Link in colors

Insert this code chunk on your hl page (internal css). Don't forget to put the style tags at the top and bottom of the chunk. Remember to remove the red comments.

a:link{color:#B24100}Regular link
a:visited{color:#CB5500}Visited link
a:hover{color:#000000}Link when you drag the mouse over
a:active{color:#CB5500}Active link

Other effects

font-family: Verdana;Changes the font on the link (verdana, tahoma, arial, georgiat>
font-size: 7pt;Changes the font size on the link (7pt, 8pt, 9pt...)
text-decoration:none;Removes the underline from the link (underline, overline, line-through)
background-color:#EFE061;Add background colour to the link
font-weight:bold;Bold font (bold, normal)
font-style:italic;Italic font (italic, normal)
font-variant:small-caps;set all characters in small versions of capital letters.
text-transform: uppercase;set caracters to upper, lower or capital case (uppercase, lowercase, capitalize, none)
letter-spacing: 3px;e f f e c t   l i k e   t h i s (uppercase, lowercase, capitalize)
border: 2px solid white;border around the text (1-10px, any color)

Put all effects between the { } brackets, and separate them with a semicolon ; like this:

a:link{color:#B24100; text-decoration:none; font-weight:bold; letter-spacing: 3px}

You can change the cursor from the regular hand to a cross, a arrow etc. For more information, check the tutorial called "cursors".