Hi,
So Yigit gave me some handy code so that my masonry blogs would view 5 across and it works great.
The issue is when viewing on iPads and mobile devices.
If in set up I deactivate overlay and choose display neither, everything works great and looks as I would like.
However, I want to display title and only on rollover. When I set it to these options, it works great on desktops but for some reason on iPads and iPhones, it loads with title being displayed as if mouse has been rolled over image and therefore blocking the entire image.
Is it possible to fix this either by having no mouse over for iPads and iPhones only While keeping it active for desktops?
Or is there an other solution that allows me to keep the masonry grid view visible on mobiles?
Thanks,
GB
Hey gb!
Thank you for using Enfold.
You can remove the masonry content on iPad. This will also answer your other inquiry (https://kriesi.at/support/topic/images-not-showing-up-with-masonry-grid-on-iphone-5s/). Add this on Quick CSS or custom.css:
@media only screen and (max-width: 989px) {
figcaption.av-inner-masonry-content {
display: none !important;
}
}
Regards,
Ismael
That worked great!
Thanks Ismael.
GB