outline: none
for a:focus, a:active
.When clicking a navigation link in Webflow's mobile menu, a green highlight may appear due to Webflow’s default focus styles or user agent styles. You can remove this using custom CSS.
Go to Project Settings > Custom Code.
In the Footer Code section, add the following inside <style>
tags:
```css
a:focus, a:active {
outline: none !important;
}
```
Save changes and Publish your project.
Remove the green highlight by adding outline: none
in Custom Code and adjusting the Focus/Active states in Webflow’s Style panel. Test on mobile to confirm it’s gone.