skip to Main Content

See the top menu here: http://larouchemc.com/demo/qweb/fr/evenements/

There is an animation on page load (menu slides from left to right) that I want to remove. But I can’t see if it’s jQuery or CSS3 animation. I would like to know how to disable it. I can’t find any parameters in the Divi theme options.

Thanks for your help!

2

Answers


  1. It’s jQuery that’s doing it. It’s possible it could be in your settings to turn it off. If you didn’t want’t to touch the jQuery though, it looks like you could use CSS to force it’s placement for a specific range:

     @media only screen and (min-width: 981px) {
         padding-left: 135px !important;
         -moz-transition: none;
         -webkit-transition: none;
         transition: none;
     }
    
    Login or Signup to reply.
  2. @rmh Your CSS isn’t targetting any CSS selector and that can be removed simply by using this CSS.

    .mobile_nav.opened .et_mobile_menu {
    display: block !important;}
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search