I guess this is on purpose cause the Ipad can’t show hover effects?! For this it showas titel and exerpt on load. I dont want to show titel and exerpt on ipad. Is this possible? If not, is it possible to output a different Portfolio grid on the ipad?
Hey royaltask!
Add this to your custom CSS.
@media only screen and (max-width: 959px) {
.av-inner-masonry-content { display: none !important; }
}
You may need to play around with the 959 value to match your iPad screen width.
Regards,
Elliott
Thanks, this eliminates the captions for browser size specific < 959 . Can I eleminate this only for mobile devices via hook or change in code?
Hi!
You can use this:
/* iPads ----------- */
@media only screen and (max-device-width : 959px) {
.av-inner-masonry-content { display: none !important; }
}
Best regards,
Ismael
this works great! Thanks