Hi!
On the mobile version, the captions of the masonry gallery are always active. This means that they are covering the actual image. Is there a way to activate them only when image is tapped, just like on the desktop version?
Best regards
Pöirot
Hi Poirot!
You can add following code to Quick CSS in Enfold theme options under General Styling tab to hide them on mobile
@media only screen and (max-width: 990px) {
figcaption .av-inner-masonry-content { display: none; }}
Regards,
Yigit
Hi Yigit!
I managed to hide captions on mobile, but is it not possible to show them when an image is touched? What do you mean by max-width 990px? I have a Maximum Container width of 1030px.
Best regards
Poirot
Hey!
This could work:
.av-masonry-entry:active figcaption.av-inner-masonry-content { display: block !important; }
Cheers!
Josue