He didn't want one for when it's not hovered over. Taking the underline out when hovered is bad because it will be harder to determine whats text and whats links to some people.
If you still don't want underlines at all after hovering use this:
#cat A:link, #cat A:visited, #cat A:active {
COLOR: {categoryfontcolor};
TEXT-DECORATION: none;
}
#cat A:hover {
COLOR: {categoryfontcolor};
TEXT-DECORATION: none;
}
|