This topic has 4 replies, 2 voices, and was last updated 1 years, 3 months ago ago by Rose Tyler
Hello support
Is it possible to get this effect, that is on this website’s menu: https://www.sellarium.it/
the effect of the main menu animation when the menu item is active.
Thank you
regards
Hello, Aryanna_p,
Thank you for getting in touch with us.
Please describe in more detail what exactly you mean.
Thank you for your cooperation and we look forward to hearing from you soon.
Kind Regards,
8theme team
hello thank you for the reply.
I would like to achieve a sort of animation/ effect on the mega menu list items: that the menu items move a little bit to the right when you point the menu item. You can see the effect on this megamenu: https://www.sellarium.it/
Thank you
Regards
Hello, Aryanna_p,
We appreciate your prompt response.
Try to add the next custom CSS to your Theme Options → Theme Custom CSS → Global CSS and check then:
.et_b_header-menu li.menu-open-by-click.opened>.nav-sublist-dropdown:not(.nav-sublist), .et_b_header-menu:not(.header-secondary-menu) .item-design-dropdown li:hover>.nav-sublist>ul, .et_b_header-menu:not(.header-secondary-menu) li:hover>.nav-sublist-dropdown:not(.nav-sublist), .site-header .etheme_widget_menu .item-design-dropdown li:hover>.nav-sublist>ul, .site-header .etheme_widget_menu li:hover>.nav-sublist-dropdown:not(.nav-sublist), .site-header .widget_nav_menu .menu>li .sub-menu {
animation-name: et-custom-menu-anim;
}
@keyframes et-custom-menu-anim {
0% {
-webkit-transform: translateY(-12px);
transform: translateY(-12px);
opacity: 0;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
}
Example of result → https://gyazo.com/0b57f702b9b1f5060c6bd81bb842ae1b
Kind Regards,
8theme team
You must be logged in to reply to this topic.Log in/Sign up