Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #358199

    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?

    • This topic was modified 9 years, 11 months ago by royaltask.
    #358525

    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

    #358956

    Thanks, this eliminates the captions for browser size specific < 959 . Can I eleminate this only for mobile devices via hook or change in code?

    #359418

    Hi!

    You can use this:

    /* iPads ----------- */
    @media only screen and (max-device-width : 959px) {
    .av-inner-masonry-content { display: none !important; }
    }

    Best regards,
    Ismael

    #359515

    this works great! Thanks

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Masonry Portfolio on IPad always show caption even I enabled *onhover*’ is closed to new replies.