PDA

View Full Version : help with text?


Zombie
08-05-2002, 10:47 PM
how do i make it so say I want a text in red with a link,but when a user scrolls over it, it turn yellow?

example are links on the left side of this page
This example (http://www.asrlonline.org/irt/)

x_goose_x
08-05-2002, 11:02 PM
css!

Put in head:

<style>
a {
color: red;
}
a:hover {
color: yellow;
}
</style>

Example:

<a href="page2.htm">My link</a>

Zombie
08-05-2002, 11:09 PM
thanks cheif it worked perfect!