Use the CSS :hover pseudo class. Example:
Code:
.rollover {
color: #FFF;
}
.rollover a {
color: #FFF;
text-decoration: none;
}
.rollover a:hover {
text-decoration: underline;
}
HTML Code:
<a href="#" class="rollover">Roll over me!</a>
- Steve
__________________
if($stevej == "helpful") { $talkupation += $user_power; }
|