Site logo

Archived topic

blue highlight on tap in mobile

5 replies · Started by June on October 1, 2021

Viewing posts 1–6 of 6

Hi,

I want to prevent blue highlight on tap in mobile. It appears when I check on my android devices. Please assist.
P.S.: Please check the comment section for testing purpose.

Hi there,

can't actually see it on my iphone, which means its probably a device styling. It sounds like the :focus ring used for accessibility. Not sure if this CSS will work but its the general method for disabling focus rings ( applied to your specific form ):

#wpdcom *:focus {
    outline: none !important;
}

No, its not working :(

Not sure but you can try this:

#wpdcom *:focus,
#wpdcom *:focus-visible {
    outline: none !important;
}

Please note - this is NOT a theme style - its added by the browser and its for Accessibility reasons to help sight impaired visitors. So you may find the browser blocks you from disabling it.

Aha ok! Then I must not be worried about it. The blue highlight is anyway not appearing in most of the browsers I have tested in.
Thank you, David :)

You're welcome

This archived topic is closed to new replies.