Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #474673

    Support provided me some quick css (below) to always have the image caption displayed on mobile devices which works great. My question is, is it possible to have it so there is not an opacity overlay on the image? I tried changing the opacity to 0 but when I do that you can’t see the caption anymore. Is there a way to do this? Thanks!

    @media only screen and (max-width: 989px) {
    .av-overlay-on-hover .av-image-caption-overlay {
      opacity: 1;
      filter: alpha(opacity=100);
    }}
    #474692

    Hey djshortkut!

    If you remove the opacity, please add a color for the font, and try also the display: table and let us know if that is fixing the issue for you.

    Best regards,
    Basilis

    #476727

    I want to keep the color of the font white. Will this work?

    #477194

    Hi!

    Try the below css:

    .av-caption-image-overlay-bg {
        background-color: transparent !important;
    }

    This should remove the background, but keep the white text.

    Best regards,
    Dake

    #479344

    Thanks, I tried putting this code in but the background of the images still has an opacity. Anything else I can try?

    #479787

    Hey!

    Ensure that you have a “.” before the class name.

    http://i.imgur.com/BEDZJEg.png

    Regards,
    Dake

    #479815

    Awesome, that did the trick! You can close this thread.

    #479838

    Hey!

    Awesome, glad we could help :)

    Cheers!
    Dake

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Image Caption on Mobile Device’ is closed to new replies.