Reputation:
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.
Upvotes: 0
Views: 2533
Reputation: 9503
Are you familiar with CSS? You can define effects on anchors like:
a:link { color: #000000; }
a:hover { text-decoration: underline; }
Upvotes: 12