> For the complete documentation index, see [llms.txt](https://docs.nickarce.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.nickarce.com/bricks-mega-menu/docs/how-tos/remove-android-chrome-blue-link-highlight.md).

# Remove Android Chrome Blue Link Highlight

On android devices specifically while using chrome, there is a blue tap highlight that is added to links inside the mobile menu. This can cause the visuallized tap target to appear like its not on the actual link you are tapping.&#x20;

In order to remove you can add this small snippet of CSS

```css
.mm li {
    -webkit-tap-highlight-color: transparent;
}
```
