Home › Forums › Support › Drop Down Menu Transition This topic has 9 replies, 3 voices, and was last updated 2 years, 11 months ago by David. Viewing 10 posts - 1 through 10 (of 10 total) Author Posts March 31, 2023 at 9:32 am #2590935 Paul I would like to have exact same menu drop-down animation and arrow on right on hover for my website in desktop mode. like this website any help will be appreciated. March 31, 2023 at 11:26 am #2591090 YingStaff Customer Support Hi Paul, Can you try this CSS in your media query? .main-navigation ul ul { float: none; height: auto; width: 0; left: -50px; } .main-navigation:not(.toggled) ul li.sfHover>ul, .main-navigation:not(.toggled) ul li:hover>ul { width: 240px; transition: all 0.5s ease; } March 31, 2023 at 11:33 am #2591102 Paul thanks, that’s working fine, now how can I add a right arrow on each drop-down item on hover same as the above website? March 31, 2023 at 12:31 pm #2591191 YingStaff Customer Support What arrow? I’m not seeing one. Can you take a screenshot of what you are referring to? March 31, 2023 at 1:41 pm #2591264 Paul Like this This arrow will appear on hover of the particular item. March 31, 2023 at 4:23 pm #2591363 YingStaff Customer Support Oh I see, do you also have the font awesome plugin installed? March 31, 2023 at 4:41 pm #2591379 Paul not yet, can you please guide me on that? April 1, 2023 at 5:38 am #2591894 DavidStaff Customer Support Hi there, try adding this CSS: .main-navigation .main-nav ul ul li a:after { content: '→'; display: inline-block; margin-left: 10px; opacity: 0; transform: translateX(-100%); } .main-navigation .main-nav ul ul li:hover a:after { opacity: 1; transform: translateX(0); transition: all 0.2s ease; } April 1, 2023 at 6:15 am #2591924 Paul That was easy, thank you. April 1, 2023 at 7:06 am #2591987 DavidStaff Customer Support Glad to be of help! Author Posts Viewing 10 posts - 1 through 10 (of 10 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In