Issue: weird highlight on section link section

Issue: Clicking the navigation section link highlights the section that the link scrolls to.
Browser: Mobile Chrome

How do I stop the blue highlight that appears around the section the nav link scrolls to?


Here is my site Read-Only:
https://preview.webflow.com/preview/roarkeclinton?utm_medium=preview_link&utm_source=designer&utm_content=roarkeclinton&preview=7f95c3fcacf3d78f1b3958cf6c185b3c&workflow=preview

The blue outline is an accessibility feature, you can disable it by using the following code in Project Settings > Custom Code > Head Code:

<style>
*:focus { outline: none; }
</style>
2 Likes