Reply 152896 to: Animated Banner / Background

Avatar: 8theme
8theme
Support staff
January 24, 2017 at 10:15

Hello,

Try to add this extra class name for the block with background anim-banner and add this code to the custom CSS

.anim-banner {
    background-repeat: repeat no-repeat !important;
    -webkit-animation: animatedBackground 30s linear infinite;
       -moz-animation: animatedBackground 30s linear infinite;
         -o-animation: animatedBackground 30s linear infinite;
            animation: animatedBackground 30s linear infinite;
}
@-webkit-keyframes animatedBackground {
    from {
        background-position: 0 center;
    }
    to {
        background-position: -2076px center;
    }
}
@-moz-keyframes animatedBackground {
    from {
        background-position: 0 center;
    }
    to {
        background-position: -2076px center;
    }
}
@keyframes animatedBackground {
    from {
        background-position: 0 center;
    }
    to {
        background-position: -2076px center;
    }
}

Regards

Go To The Whole Conversation In Topic
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.