Text Box Hover Link
I am a Brizy Cloud Pro subscriber. I am trying to remove the text box tooltip that appears when I hover over my main menu items.
0
-
Hello Olivia,
We have recently added this to make the menu element more accessible to people with disabilities. If you would like to hide the tooltips for your menu elements, kindly add this code under CMS > Project Settings > Code > Code injection > Footer
<script>
document.querySelectorAll('a.brz-a').forEach(link => {
link.removeAttribute('title');
});
</script>
0 -
Works!
Thank you for support :)0
Please sign in to leave a comment.
Comments
2 comments