Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #659026

    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.

    #659682

    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

    #659708

    That worked. Thanks Josue!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Different Image caption hover setting for mobile’ is closed to new replies.