Hi @katherinemasters – first of all a reminder to not share passwords. I’ve asked an admin to remove this again. I recommend https://snag.gy for easily sharing screenshots – please follow the instructions on the page, then paste the URL in this chat. It works with Chrome, Firefox and Edge. (I’m also not entirely sure it’s necessary to hide this test site behind a password.)
That said, this is the CSS that is causing the outline:
Link to image: https://cld.wthms.co/akYXnk
This can be fixed with some custom CSS. Under Customize > Additional CSS, you can add the following code:
?
/* fix the outline colour of menu items */
?
a:focus,
button:focus,
.button.alt:focus,
input:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus {
outline-color: #ffffff;
}
The #ffffff
in there is white, but if you’d like another colour, you can find the hex values here: https://htmlcolorcodes.com/
?
If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).