Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #869167

    Hello at Kriesi,
    is it possible to not show the caption but the image when using the masonry element showing portfolio entries? I want the same image as in desktop mode. I have tried

    @media only screen and (max-width: 767px) {
    figcaption.av-inner-masonry-content.site-background {
    display: none;
    }}

    from https://kriesi.at/support/topic/masonry-gallery-in-mobile/ but this does not work.

    Best Regards

    • This topic was modified 7 years ago by Sigmund. Reason: minor
    #869969

    Hey Sigmund,
    Try this code in the General Styling > Quick CSS field:

    
    @media only screen and (max-width: 1024px) {
    figcaption.av-inner-masonry-content.site-background {
      display: none!important; 
    }}

    For me your site had that behavior up to 1024px, but you can adjust to suit.
    Another option:

    @media only screen and (max-width: 1024px) {
    .main_color .container .av-inner-masonry-content {
      display: none!important; 
    }}

    Best regards,
    Mike

    #870212

    Thanks, Mike, that works for me!
    Best Regards

    #870230

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Masonry portfolio images captions on mobile’ is closed to new replies.