Hello,
I wish to create a link similar to the "Forgot your Password?" at (No underline, underline on hover).
I tried this Css (external stylesheet but it isn't working):
#forgetpass
{
font:tahoma;
font-size:10px;
background-color:#3B5998;
color:#768BB7;
position:fixed;
top:100px;
right:104px;
a:visited {text-decoration:none;}
a:hover {text-decoration:underline;}
a:active {text-decoration:underline;}
a:link {color:#768BB7;}
a:visited {color:#00FF00;}
a:hover {color:#FF00FF;}
a:active {color:#0000FF;}
}
and in my html
<a id="forgetpass" href=" your password?</a>
I wish to create a link similar to the "Forgot your Password?" at (No underline, underline on hover).
I tried this Css (external stylesheet but it isn't working):
#forgetpass
{
font:tahoma;
font-size:10px;
background-color:#3B5998;
color:#768BB7;
position:fixed;
top:100px;
right:104px;
a:visited {text-decoration:none;}
a:hover {text-decoration:underline;}
a:active {text-decoration:underline;}
a:link {color:#768BB7;}
a:visited {color:#00FF00;}
a:hover {color:#FF00FF;}
a:active {color:#0000FF;}
}
and in my html
<a id="forgetpass" href=" your password?</a>