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);
}}
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
I want to keep the color of the font white. Will this work?
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
Thanks, I tried putting this code in but the background of the images still has an opacity. Anything else I can try?
Awesome, that did the trick! You can close this thread.
Hey!
Awesome, glad we could help :)
Cheers!
Dake