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
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
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
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
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?
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