Hi,
I’m trying to get rid of the “…….” that is under all the links in the directory. How do I do that? If you look at the directory page here: http://isorriso.com/directory/
You will see that every link has a dotted line under it. how do I get rid of that? I tried putting in this code into the CSS but it only added an additional underline when hovering. If possible, I would like to alter the linking style in the directory only.
Thanks
Adam
/* unvisited link */
a:link {
color: #063e53;
text-decoration: none;
}
/* visited link */
a:visited {
color: #1c6782;
text-decoration: none;
}
/* mouse over link */
a:hover {
color: #1994ad;
text-decoration: underline;
}
/* selected link */
a:active {
color: #ffffff;
text-decoration: underline;
}