Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #835207

    Hey guys,

    On this page of my site:

    Im using a masonry gallery to go fullwidth. But there’s two issues

    1. It’s not centered once the browser goes past a certain width. Reference: https://ibb.co/jQSW2F
    2. I want to control when its no longer fullwidth. Right now, it stops stretching fullwidth after a certain size, but I want to control what that size is.

    Thanks!
    Chris

    • This topic was modified 6 years, 8 months ago by ccyran.
    #836692

    Hi Chris,

    Can you try adding this css code in Quick CSS:

    .av-masonry-container {
        min-width: 100%;
    }

    Hope this helps. :)

    Best regards,
    Nikko

    #836732

    Hey!

    That didn’t work :(

    I still want the masonry gallery to not expand past 1600px

    Currently to do so, I have this CSS:

    .av-masonry-container {
    max-width:1600px !important;
    }

    Best,
    Chris

    #838411

    Hi Chris,

    Can you try this one instead:

    .av-masonry-container {
        max-width: 100% !important;
    }

    Hope this would help.

    Best regards,
    Nikko

    #838451

    Hey Nikko,

    No luck :(

    The masonry gallery goes fullbleed. It doesn’t stop expanding after 1600px.

    #838576

    Hi Chris,

    Can you try this css code:

    #top .av-masonry-container {
        float: none;
        margin: 0 auto;
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    #838723

    Yes! Thank you!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘fullwidth masonry gallery not centered’ is closed to new replies.