Animation Disabled but still showing content sliding up - Acme Themes

Best Premium and Free WordPress Themes Forums Education Base Pro Animation Disabled but still showing content sliding up

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #27302
    ellens
    Participant

    Hi,

    On our website, I selected ‘disable animation’ but on every page the content still slides up from the bottom. Website: https://yourcentersuccess.info

    On the live support chat, they suggested I add custom css but it made no difference.

    .slideInUp1 {
    visibility: visible!important;
    }

    #27325
    Acme Themes
    Keymaster

    Hello eliens,

    Can you Please try this CSS

    .slideInUp1,
    .slideInUp2,
    .slideInUp3{
    	/*CSS transitions*/
    	-o-transition-property: none !important;
    	-moz-transition-property: none !important;
    	-ms-transition-property: none !important;
    	-webkit-transition-property: none !important;
    	transition-property: none !important;
    	/*CSS transforms*/
    	-o-transform: none !important;
    	-moz-transform: none !important;
    	-ms-transform: none !important;
    	-webkit-transform: none !important;
    	transform: none !important;
    	/*CSS animations*/
    	-webkit-animation: none !important;
    	-moz-animation: none !important;
    	-o-animation: none !important;
    	-ms-animation: none !important;
    	animation: none !important;
    }

    Best Regards!
    Acme Themes

    #27330
    ellens
    Participant

    I tried that and it took away all the content!! Any other suggestions?

    #27363
    Acme Themes
    Keymaster

    Hello eliens,

    Can you Please try this again!

    .slideInUp1,
    .slideInUp2,
    .slideInUp3{
    	/*CSS transitions*/
    	-o-transition-property: none !important;
    	-moz-transition-property: none !important;
    	-ms-transition-property: none !important;
    	-webkit-transition-property: none !important;
    	transition-property: none !important;
    	/*CSS transforms*/
    	-o-transform: none !important;
    	-moz-transform: none !important;
    	-ms-transform: none !important;
    	-webkit-transform: none !important;
    	transform: none !important;
    	/*CSS animations*/
    	-webkit-animation: none !important;
    	-moz-animation: none !important;
    	-o-animation: none !important;
    	-ms-animation: none !important;
    	animation: none !important;
            visibility: visible;
    }

    Best Regards!
    Acme Themes

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.