change link color
Posted: Tue Dec 12, 2006 2:35 am
i want to change color of link when i click on that particular link,so user uderstood what link is active
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
a:link { color: red; }
a:hover { color:blue; }
a:active { color:grey; }