Hello!
As always, extremely satisfied with Enfold.
On this project, we were trying to disable the Masonry Post animation because some of the posts weren’t appearing properly (they showed only when you scrolled back to the top. We used this CSS solution, provided by your moderators on similar topics:
.av-masonry-entry {
visibility: visible!important;
opacity: 1;
}
.avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry {
-webkit-animation: none!important;
animation: none!important;
}
As we disabled animation (sort of) the posts are not aligned in one row, but in 2 or even 3 as you can probably see (print screen attached in link). Can you help us solve this issue by either solving the problem with post animation delay or by setting the disabled animation in a way that doesn’t effect the visual architecture of the site.
Thank you very much for your help in advance!
M.
Hey mfrangezmaribor,
We apologize for the late response.
Try adding this css code:
#top .av-masonry-container .av-masonry-entry {
clear: none !important;
}
Let us know if this helps.
Best regards,
Nikko
Thank you. Works perfectly.