The font color of my hyperlink does not change after someone clicking on it. What can be done?
The font color of my hyperlink does not change after someone clicking on it. What can be done?
Check your theme's stylesheet for this:
a:visited {
color: black; }
a:active {
color: red; }
Those are the general css stylings you should target if you wanted to change the color of clicked-on links.
thanks, brevityness
This topic has been closed to new replies.