After creating a navigation list for a client using the [Oswald]() font-face, an issue arose when the user scrolled over the links. Instead of a navigation arrow popping up as intended, the links turned orange upon hovering. Despite removing all javascript and the fontface, the problem persisted. You can see a screenshot of the issue here.
Below is the CSS (SASS) code I am using:
#leftnav {
width: 205px;
float: left;
ul {
li {
border: 1px solid #fff;
border-top: 0px;
background: #cc5816;
padding: 3px 10px;
@include gradient($top_color: #d86c07, $bottom_color: #bb5e06);
a {
position: relative;
font-family: $main_bold_font;
font-size: 16pt;
color: #fff;
text-decoration: none;
text-shadow: $text_shadow;
}
a:hover { @extend a; }
a:visited { @extend a; }
}
}
}
Any suggestions on how to resolve this issue?