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
Hi Chris,
Can you try adding this css code in Quick CSS:
.av-masonry-container {
min-width: 100%;
}
Hope this helps. :)
Best regards,
Nikko
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
Hi Chris,
Can you try this one instead:
.av-masonry-container {
max-width: 100% !important;
}
Hope this would help.
Best regards,
Nikko
Hey Nikko,
No luck :(
The masonry gallery goes fullbleed. It doesn’t stop expanding after 1600px.
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
Yes! Thank you!