Page 1 of 1

change link color

Posted: Tue Dec 12, 2006 2:35 am
by nasir
i want to change color of link when i click on that particular link,so user uderstood what link is active

Posted: Tue Dec 12, 2006 3:18 am
by matthijs
That's client side. CSS.

Code: Select all

a:link { color: red; }
a:hover { color:blue; }
a:active { color:grey; }