The explanation on this message: #380624 worked wonderfully to change font.
Is it possible that the BACKGROUND color of the caption block could change for that same hover?
For example, changing .av-inner-masonry-content site-background{background-color:yellow} will change ALL the background blocks for title and caption…but only want to change the color, as the explanation above detailed, on hovering over the gallery square.
Any ideas?
The quick CSS on that message was:
.av-masonry-entry.isotope-item:hover .av-masonry-entry-title {
color: red !important;
}
If I change background color within same CSS, it puts background-color ONLY behind title.
Thank you!
Hi CharlieTh!
Thank you for using Enfold.
You can add this to the Quick CSS field:
.avia_desktop.avia_transform3d .av-caption-on-hover .av-masonry-entry.av-masonry-item-with-image:hover .av-inner-masonry-content {
background: yellow;
}
Best regards,
Ismael
Hey!
The link you provided leads to a 404 page, could you please check it and resubmit?
Regards,
Rikard
Hey!
Alright. Please replace it with this:
.main_color .container .av-inner-masonry-content:hover, .main_color .container .av-inner-masonry-content:hover .avia-arrow {
background: yellow;
}
Cheers!
Ismael
Thank you, Ismael…worked perfectly.
Now, I need to examine step by step and see WHY your answer below worked!
.main_color .container .av-inner-masonry-content:hover, .main_color .container .av-inner-masonry-content:hover .avia-arrow {
background: yellow;
}
Appreciate your taking the time. Just what I needed.