Hi Shopify community,
I’m struggling to find out how I can have my mega menu working with an hover functionality vs click. Also, I’d love to make sure selected item in the menu get bolded instead of underlined.
Here’s my work in progress store (Dawn theme):
https://24a994.myshopify.com/
I hope someone can help !
Thanks,
Antoine
1 Like
Hi,
Hope this will work
- Make Mega Menu Work on Hover (not click)
css example
/* Show dropdown on hover instead of click */
summary.header__menu-item {
pointer-events: none;
}
details[open] > .mega-menu {
display: block;
}
details.header__submenu:hover > summary {
pointer-events: auto;
}
details.header__submenu:hover > .mega-menu {
display: block;
opacity: 1;
visibility: visible;
}
.mega-menu {
transition: all 0.3s ease;
}
- Used aria-current=“page” to bold the current menu link