Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Isotopic Layout: items overlap on resizing window › Reply To: Isotopic Layout: items overlap on resizing window
December 15, 2016 at 1:07 pm
#11283
Keymaster
Hi Federico,
I think the problem is originating from the way how the isotope script is trying to fit the items into the container. It changes the item height relatively to the change of the width, which I think is creating this overlay.
Luckily I think a min-width CSS property will do the trick, if set to the same as the original item height. Like so:
[code].isotopic .results .item {
min-height: 25px;
}[/code]