Archived topic
Menu hover animation
3 replies · Started by Antonio on December 29, 2020
Viewing posts 1–4 of 4
Hello,
I would like to add menu hover animation like Dev template in site library.
Could you help me to find that css?
Thank you
Antonio
Hi there,
the Dev site uses this CSS:
/* navigation hover effect */
.main-navigation .main-nav ul li>a {
transition: transform 500ms ease-in-out;
}
.main-navigation .main-nav ul li:hover>a {
transform: translate3d(0, -3px, 0);
}
Thank you, David!
You're welcome
This archived topic is closed to new replies.