change link color
Moderator: General Moderators
change link color
i want to change color of link when i click on that particular link,so user uderstood what link is active
That's client side. CSS.
Code: Select all
a:link { color: red; }
a:hover { color:blue; }
a:active { color:grey; }