Blue lines on home page?

Hi,

There are two blue lines on my home page - they usually show up when you preview the page and when you click on them, they disappear. The lines seem to be around the photos, in sticky/track section. This doesn’t happen every time though, but they show on desktop and mobile.

Any ideas how to get rid of them?

https://preview.webflow.com/preview/studio-94-b9ef40?utm_medium=preview_link&utm_source=dashboard&utm_content=studio-94-b9ef40&preview=bec49be0575aff15abc5d07969935906&workflow=preview

Hi @taina94,

I wasn’t able to replicate this on my end but it’s possible that this is part of your browsers accessibility features.

You could try adding the below code to the head of your page to see if this removes the line?

<script src="https://cdn.jsdelivr.net/npm/focus-visible@5.2.0/dist/focus-visible.min.js"></script>
<style> 
.js-focus-visible :focus:not(.focus-visible) {
outline: none;
}
</style>

Let me know how it goes!

Great it worked, thanks!

1 Like