Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter ehuds

    (@ehuds)

    Hey,

    so if some else is interested, I end up using this css:

    .ast-desktop .main-navigation ul ul {
    overflow: hidden;
    max-height:0;
    -webkit-transition:max-height 0.3s ease-in;
    -moz-transition:max-height 0.3s ease-in;
    -o-transition:max-height 0.3s ease-in;
    transition: max-height 0.3s ease-in;
    }
    .ast-desktop .main-navigation ul li:hover > ul {
    max-height:250px;
    }

    • This reply was modified 4 years, 11 months ago by ehuds.

    Hello @ehuds

    Yes, you can use a similar custom CSS to achieve this requirement.

    Also, if you need further transitions and modifications, you can refer to this article for more.

    Regards,
    Suman

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sub menu transition’ is closed to new replies.