Change Animation Speed
In v2.2 onwards it is possible to change the animation speed in the Mega Menu settings:
There are 3 options:
- Fast (200ms – default)
- Medium (400ms)
- Slow (600ms)
If you want to add more options you can add the following to your themes functions.php file:
1 2 3 4 5 6 7 |
function megamenu_add_speed_options($options, $selected) { $options["900"] = 'Very Slow'; $options["100"] = 'Very Fast'; return $options; } add_filter('megamenu_effect_speed', 'megamenu_add_speed_options', 10, 2); |