Problem with Isotope and loadmore

0

I've customized an isotope script with the "loadmre" function.

It is working correctly, but by clicking on any of the filters, the "hidden" class is removed and a "hole" in the footer is left.

I tried to change in Jquery the statement to add the class, but I could not. If you click on "toilets", for example, you can see what happens.

Code in Codepen

    
asked by anonymous 24.12.2018 / 21:01

1 answer

1

Add to the class .isotope the property below:

.isotope{
   overflow: hidden;
}

This will restrict the div area to visible elements only.

    
24.12.2018 / 22:51