Posted by johnsonholding@yahoo.com on 01/10/06 20:53
Ok, thanks I am starting to get some of it. I noticed it is pretty
complicated, but I am just trying to turn on the underlining when the
mouse moves on it, but have it off before the mouse hits it. Thanks,
you guys have been alot of help so far!
Here is what I have : (alot of it might be wasted because I am not
using it). But so far I have white type, hover - turns black. Now I
just want the links not to be underlined until the mouse goes over it).
<style type="text/css" >
a {
background-color: transparent;
color: #ffffff; /* blue */
font-size: 100%;
}
a:link {
background-color: transparent;
color: #ffffff; /* blue */
}
a:visited {
background-color: transparent;
color: #800080; /* purple */
}
a.focus {
background-color: #554433;
color: #3399cc;
}
a:hover {
background-color:;
color: #000000;
a:link {text-decoration: underline;
color: #000000;
background: transparent;
}
}
</style>
[Back to original message]
|