Struggling to change the default link colors on my site. Despite researching similar issues, I can't seem to make it work.
This is how I've set the base link colors:
a:link, a:visited, a:hover { color: #0279aa }
Below is my style override for a specific element.
a:link.slideshow-navigate {
background : #37ab4f;
color : #fff;
}
The link I have defined looks like this:
<a href="#" class="slideshow-navigate">Link name</a>
Even so, the link color remains #0279aa
instead of #fff
. I prefer not to use "!important" if possible.
Any assistance would be greatly appreciated! Thank you in advance.