I have an an image caption overlay that displays upon hover on my homepage (which is great)
However, I would like it so that the image caption is always displayed for mobile / tablet devices (since you can’t hover on those devices).
How can I make that happen?
Thanks.
Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) {
.av-overlay-on-hover .av-image-caption-overlay {
opacity: 1;
}
}
Cheers!
Josue
That worked. Thanks Josue!