One of the links in my navigation bar is:
<li><a href="#live-now" class="navBtn"><span id="navLiveNow" class="white innerShadow textShadow">Live Now</span></a></li>
I have also defined the following styles in my CSS file:
a { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:focus { text-decoration: none; }
a:hover, a:active { text-decoration: none; }
Despite these styles, the links are still displaying in the default blue/purple color for visited and hover states. What am I missing?