Hello,
I am setting up a blog page that uses the Masonry blog. By default all the images start off a little faded and then when one rolls over them with the mouse, they get a little brighter. But I think I just want them all bright to start. Or bright to start and then faded when you roll over.
Can you tell me where the setting is that controls that?
Here’s the example Masonry blog for a reference. https://kriesi.at/themes/enfold/blog/masonry-blog/
Hey Dandelion222,
Try this code in the General Styling > Quick CSS field:
.avia_desktop .av-hover-overlay-active .av-masonry-image-container {
opacity: 1!important;
}
.avia_desktop .av-masonry-entry:hover .av-masonry-image-container {
-webkit-transform: none!important;
transform: none!important;
}
Best regards,
Mike
Actually it is a setting in the masonry grid settings area. But thank you!