03/09/2016 at 10:56 am
#368385
Keymaster
@ beck
I looked at the page in Chrome, Firefox, Edge and IE … they all looked the same to me.
…
Oh, I see now. It only happens when you click on an item, but if you click off the item it disappears. It also disappears when mouse hovering over the item.
After a bit of fiddling I figured out this is being caused by the theme setting a 5px outline on links which have focus. They actually did this globally to many form elements such as submit button and checkboxes. Not sure why you would do that but I am sure the theme author has their reasons.
To fix this, add the following to the theme’s custom CSS area:
#cn-slim-plus a:focus {
outline: none;
}
This will override the theme CSS setting in the Slim Plus template only.
Hope that helps.
