I have this code written in my CSS; which makes all links on my site white, and when they\'re hovered on, they turn gray.
a:link {color: #FFFFFF} a:active {c
Give your links an ID:
Page 1 Page 2
And then use this css:
#page1:hover { color: red; } #page2:hover { color: blue; } /* ... */