:focus
state, and set Focus Outline to None.The blue outline around a search button in Webflow is caused by the browser’s default focus styling for accessibility. You can remove or modify this outline using CSS.
Go to Page Settings and scroll down to the Custom Code section.
In the Footer Code box, add the following CSS inside <style>
tags:
```
```
This removes the blue outline when the button is focused.
:focus
state.Removing the blue outline can be done via CSS (outline: none;
) or through Webflow Designer by modifying the :focus
state settings. Ensure accessibility is maintained with alternative focus indicators if needed.