How to remove portfolio/blog entrance animation?

If you don't like how portfolio or blog is loading (we talk about entrance animation from left top corner) you can use below css but please remember that this won't work for "Masonry layout" with ajax filtering.
.posts_group, .portfolio_group {
    height: auto !important;
}

.posts_group:after , .portfolio_group:after {
    clear:both;
    content: ' ';
    display:table;
}

.posts_group .post-item, .portfolio_group.grid .portfolio-item {
    float: left;
    position: relative !important;
    left: 0px !important;
    top: 0px !important;
    transform: none !important;
    -moz-transform: none !important;
    -webkit-transform: none !important;
}
This solution has been created by @beazmusix. Thanks!
Sign In or Register to comment.