To remove the focus border around text/input boxes in WordPress, you can add custom CSS code to your website’s stylesheet. Here’s how you can do it:
- Log in to your WordPress dashboard and go to Appearance > Customize > Additional CSS.
- Paste the below CSS code into the Additional CSS box.
- Click on the “Publish” button to save your changes.
a:focus {
outline: none !important;
}
This code will remove the focus border from all elements on your website, including text and input boxes.