Hi there,
Thanks for writing in! To remove this focus outline for all inks, you can add this under Custom > CSS in the Customizer.
a:focus, select:focus, input[type="file"]:focus, input[type="radio"]:focus, input[type="submit"]:focus, input[type="checkbox"]:focus {
outline: medium none !important;
}
To do this for the menu link only, you can use this instead :
.x-navbar .x-nav > li > a:focus {
outline: medium none;
}
Hope this helps.
Cheers!