I have a link in html that downloads a file.
<a href=".../file.html">A3. Professionalism and Public Relations</a>
In my css file I have this specified:
a:hover, a:visited{
color: orange;
}
When I hover, the link becomes orange but when I click on it, it keeps its default color. I know my css works for non-download links. What should I do for download links?