Sliding sidebar

Support Area Forums Umami Sliding sidebar

Viewing 2 posts - 1 through 2 (of 2 total)
URL to the page in question: http://papaswings.wpengine.com/
  • Author
    Posts
  • #36020
    Karen Kanakanui
    Participant

    I was trying to make the left sidebar static and found the following code by going through old posts, so hooray for that! The only issue I have now is that the black transparency is still sliding in behind the menu, so I think I’m missing one piece of code somewhere? Thanks!

    #sidebar.slideInLeft {
    -webkit-animation-name: none;
    animation-name: none;
    }

    #sidebar.animated {
    -webkit-animation-duration:0;
    animation-duration: 0;
    }

    .home #sidebar.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    }

    .fadeIn {
    -webkit-animation-name: none;
    animation-name: none;
    }

    #36021
    Bill Robbins
    Moderator

    Hi Karen,

    Excellent question. Since that topic was posted, there was a change to the animation in the sidebar. To turn off that animation, add this to your Custom CSS:

    
    body::before {	
    	-webkit-animation-duration: 0;
    	animation-duration: 0;
    	-webkit-animation-name: none;
    	animation-name: none;
    }
    

    See if that doesn’t do the trick for you. Let me know if you run into any trouble.

    Have a great weekend,
    Bill

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Sliding sidebar’ is closed to new replies.