tags:

views:

44

answers:

1

I have a link in blue color.

I want to it to be in black color. Then when a person rolls his mouse over it, it should change to black link with the underline.

+10  A: 

Are you familiar with CSS? You can define effects on anchors like:

a:link  { color: #000000; }
a:hover { text-decoration: underline;  }
+1 Good answer, @jskiles1. I hope you don't mind, I've indented your code for you.
Jonathan Sampson
Oops, yea. I'm still new here. Thanks!
thanks a lot it worked! Why is it that sometimes we can use A.(classname):link{etc)?what does a: here signify?
Karthik Kottapalli