Any thoughts on why the images from the masonry gallery are cropped this way would be appreciated :)
Thank you guys!
Hi Justin!
May we have temporary access to your website so we can take a closer look at your masonry settings?
Cheers!
Dake
Hey Dake!!
Hi!
Thank you for the login details :)
Please try inserting the below css into your custom css section:
.av-1px-gap.av-fixed-size .av-masonry-entry .av-inner-masonry {
min-height: 300px !important;
}
Best regards,
Dake
Hmm, still doesn’t appear quite right.
See the 3rd one down….half cropped. :/ Thoughts?
Thanks Dake
Hi!
They are actually covered by the masonry content. Try to increase the height of the masonry items with this:
@media only screen and (max-width: 767px) {
.av-fixed-size .av-masonry-entry .av-inner-masonry-sizer {
padding-bottom: 150%;
}
}
Adjust the bottom padding as you like. Hard refresh the page aftewards.
Cheers!
Ismael
Help me out guys. Ipad rendering: http://godisalwaysfaithful.com/ipad.jpg
Thanks!
Hi!
Adjust the css media query coverage:
@media only screen and (max-width: 1024px) {
.av-fixed-size .av-masonry-entry .av-inner-masonry-sizer {
padding-bottom: 150%;
}
}
If it is a retina display, use this:
@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
.av-fixed-size .av-masonry-entry .av-inner-masonry-sizer {
padding-bottom: 150%;
}
}
Adjust the value if necessary.
Cheers!
Ismael
Thanks Ismael,
do I have to depend on the client cropping all photos to be the EXACT same size in order for this to appear balanced? Take a look at your iPad to understand what I am saying….the image to the far right has a different height. Thanks!