When I click a link on my website it is creating an outline around the link like so
I've tried adding:
a.image-link:focus { outline: 0; }
and
a {outline : none;}
But nothing seems to get rid of it. Is there a way to remove it?
When I click a link on my website it is creating an outline around the link like so
I've tried adding:
a.image-link:focus { outline: 0; }
and
a {outline : none;}
But nothing seems to get rid of it. Is there a way to remove it?
You can just use this:
a:active, a:focus {
outline: 0;
border: none;
-moz-outline-style: none;
}
border
has nothing todo with it. –
Cartridge If at-least one of the solutions above doesn't work for anyone. Give this a try as well
a:active, a:focus {
box-shadow: none;
}
Just add a:visited { outline: none; }
in your style file.
try all of these until u find what works in your case.
a:active, a:focus, li:focus, li:active {
outline: none !important;
border: none !important;
text-decoration: none !important;
box-shadow: none !important;
-webkit-tap-highlight-color: transparent !important;
-webkit-user-select: none; /* Chrome/Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+ */
user-select: none;
}
Fixed:
Found out in my CSS that there was code already being generated to create an outline on a:active
. This was overriding my code and removing it fixed the problem.
Worked for me
I battled this for a while and this worked for me on WordPress 5.5.3 with StoreFront theme:
a:hover,
a:active {
outline: none;
box-shadow: none !important;
}
You can use a, a:active, a:focus {outline: none;}
a, a:active, a:focus {outline: none;}
© 2022 - 2024 — McMap. All rights reserved.
a:active{outline: 0;}
– Sass