Hello,
What size of images you are using? it’s little bit hard to make fit to all of browsers if you upload small ones. you need to upload big enough to make thumbnails.
Thank you,
Joe
Same problem, fwiw, and I was using large images. The container is only 300px high. I changed the 300px to 600px for the following css selectors and that solved it for me.
.property-single .lava-detail-images ul.lava-attach-item > li {
height: 300px;
overflow: hidden;
position: relative;
display: block;
}
.property-single .lava-detail-images ul.lava-attach-item > li > img {
max-width: 100%;
height: 300px;
}
#lava-map-container {
height: 300px;
}
On second thought I went back and removed the height property from the first two, and changed the #lava-map-container height to auto. That worked too. 🙂
Which file do you place this code in?