I’m looking to remove the highlighted gray box when it appear as you press the menu tab on mobile
(it happens for a split second)
password samurai
A user wants to eliminate a gray highlighted box that briefly appears when tapping the menu button on mobile.
Proposed Solution:
outline, box-shadow, and background properties, setting them to none or transparent with !important flagsStatus: A solution has been provided but not yet confirmed as tested or resolved by the original poster.
I’m looking to remove the highlighted gray box when it appear as you press the menu tab on mobile
(it happens for a split second)
password samurai
Hi,
Scroll to the bottom of CSS file and add this code
CSS code example
button:focus, button:active,
a:focus, a:active {
outline: none !important;
box-shadow: none !important;
background: transparent !important;
}