If you could share your css we can give you more accurate answer.
but most likely you can prevent this behaviour using :focus
or :visited
pseudo class
it will be something like that
a:visited, a:focus {
box-shadow: none;
background-color: transparent;
}
CLICK HERE to find out more related problems solutions.