Forum Moderators: mack
<a href="some-page.html">Some Page</a>
Changing color on mouse-over is an inherent behavior in browsers, so you should have to do nothing for it to change color on mouse-over - however, if you have a particular color you want that is not the default color, you can apply a style to your links with CSS.
Complete reference and tutorials here [w3schools.com]
a:link {color: #ff0000}
a:visited {color: #00ff00}
a:hover {color: #0000ff}
a:active {color: #0000ff} If the hyperlinks are not underlined, or there are other styles, you might try something like
a:link {color: #0000ff; text-decoration: underline}
a:visited {color: #00ff00}
a:hover {color: #0000ff}
a:active {color: #0000ff} If the above does not work, you might need to supply some of your source code to see if the style is being overwritten somewhere.