I'm trying to get the background image on the 'download' link to change to a green tick once clicked and downloaded. I have applied a:visited, a:hover and a:active, hover is working but somehow a:visited and :active aren't, any ideas why?
form.download a:visited{
background: url("../images/tick-active.png") no-repeat 10px 5px;
}
form.download a:hover{
background: url("../images/tick-active.png") no-repeat 10px 5px;
}
form.download a:active{
background: url("../images/tick-active.png") no-repeat 10px 5px;
}
Also, here is a jsfiddle