Take a look at this JS Bin. I want to change the link Project name
in there. By default, it is underlined when hovered over. How can I remove that effect?
I attempted using a class project-name
:
a:hover, a:focus .project-name {
text-decoration: none;
}
However, this modification also impacts other links.