Log in

View Full Version : How do I make a particular cursor for a link?



Apprehender
10-22-2005, 12:55 AM
I just need some help as I am working on my blog, and want to make it look as good as my friend's ones, so, is there such a thing as setting the particular 'rollover' cursor for the whole webpage? Please advise. :)

spyder
10-22-2005, 04:49 AM
for a simple one, you could paste this into the head and change the colors accordingly

<STYLE TYPE="text/css">
a:link { color: blue; text-decoration: none }
a:active { color: red; text-decoration: none }
a:visited { color: blue; text-decoration: none }
a:hover { color: green; text-decoration: underline }
</STYLE>