How to Remove the Button Focus
Hey, I am trying to remove the focus. once button is clicked and you went out of the button the focus is there in the button if you enter a key in keyboard the button will be trigger the click event because the button is focused until you click outside the button in any places hope you understood is there any option to remove this focus
Replies (1)
HI Rakul,
If you are using a button HTML element, you can override button focus styles using the :focus selector in CSS.
Here is an example:
.your-button-class:focus {
outline: none;
box-shadow: none;
} Regards,
Lauris Stepanovs,
Keenthemes Support Team