Mega Menu Dropdown Effect

Hi Themeco Team,

Is it possible to have a mega menu dropdown scroll down instead of the default slide-in/up. We’re not finding that option anywhere in the editor. Check out the mega menu on this site for an example of the dropdow effect we’re looking to achieve.

Thank you!

Hey @bartenderonduty,

Regretfully, that is not currently possible. But, I will list this as a feature request, so this might be added in the future.

For now, I’ll show you a custom code to serve as a guide how to extend the style of the Dropdown element’s.

It is important to note however, that we will not provide further support for the guide. You will need to learn how the code works or learn CSS in general. If you want us to guide you further, please consider subscribing to our One premium support.

If that is clear, here’s the custom code to be added in the Dropdown’s Element CSS.

$el.x-dropdown {
    transform: translate3d(0,-80%,0);
}
$el.x-dropdown.x-active {
    transform: none;
}

Hope that helps and thank you for understanding.

OK great, thank you for the quick response!

Hi @bartenderonduty,

You are most welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.