Take a look at this image and screenshot.
Whenever the link is selected, hovered over or clicked on, a blue background appears on this mobile site. I have already included the CSS code below.
The CSS code works fine in desktop browsers but not in mobile ones, despite having defined hover and other classes.
I would like to eliminate this default blue background, as everything else is working perfectly.
::-moz-selection {
background-color: transparent;
color: #fff;
}
::selection {
background-color: transparent;
color: #fff;
}