hi again :)
I want the hover effect on the masonry caption rollover to just fade in instead of ‘flipping up’ and fading in. How do i remove that 3D transform?
Hey!
Try adding this code to the Quick CSS:
.avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry{
-webkit-animation: none !important;
-moz-animation: none !important;
animation: none !important;
}
Cheers!
Josue
Hi Josue
Thank you for your help.
Sorry, I think I needed to be more clear … I don’t mind the animation on the loading of the masonry (which the above code removes). What I’m looking for is on the hover state of a masonry item the caption and background rise up from the bottom…. I want to remove that ‘rising action’ and just have it fade in with no movement. Does that make sense?
Hey!
I see, use this instead:
.avia_desktop.avia_transform3d .av-caption-on-hover .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content{
-webkit-transform: none !important;
-moz-transform: none !important;
transform: none !important;
}
Cheers!
Josue
Perfect. Thank you Josue!
You are welcome, glad to help :)
Regards,
Josue