Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #278174

    Hi,

    I have 8 photos that I’d like to use in a full width masonry gallery and I’d like them to take up only one row and automatically re-size depending on the screen size.

    Here’s the site – http://konishki.connect4consulting.com/

    Thanks,
    Gabe

    #278191

    Hey Gabe!

    Try adding this code to the Quick CSS:

    .home .av-masonry-entry {
        -webkit-transform: none !important;
        width: 100% !important;
        position: static !important;
    }
    .home .av-masonry-container {
        height: auto !important;
    }

    Cheers! 
    Josue

    #278224

    Josue – thanks for your help but…

    That didn’t work at all! Check out the page – http://konishki.connect4consulting.com/

    What I’m trying to do is use the masonry look but just have 8 images in a row horizontally and have them resize depending on screen size. I also would like to reduce the overall size of each image.

    Thanks,
    Gabe

    #278234

    Ok, discard my previous suggestion.

    What you need to do is reduce the image size, that way 8 images can fit in a single row, try adding this to the Quick CSS:

     .responsive.html_stretched .av-masonry-entry{width:12.5% !important; }
    

    Regards,
    Josue

    #278252

    Josue,

    Okay – that’s much better.

    Now suppose I want to limit the mobile or tablet size so that it doesn’t reduce too small?

    #278267

    Wrap the code into a media query, like:

    @media only screen and (min-width: 767px) {
     .responsive.html_stretched .av-masonry-entry{width:12.5% !important; }
    }

    That way it will only affect it when the window is 767px wide or more.

    Regards,
    Josue

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.