Click to See Complete Forum and Search --> : Link On Webpage


mdvd
12-30-2006, 05:22 PM
I am new at making webpages and I have a question about the links. when i make the text a link it atomatically makes it the colour blue and underlined. how do i change make the text appear not underlined, but then when you put your mouse over it, it goes underlined. If you understand what I am saying and can help, please reply.

Thanks

Charles
12-30-2006, 06:40 PM
http://www.w3.org/TR/REC-CSS2/selector.html#link-pseudo-classes

ryanbutler
12-30-2006, 07:02 PM
a:link{
text-decoration:none;
}
a:visited{

}
a:hover{
text-decoration:underlined;
}
a:active{
text-decoration:underlined;
}