How to make element push up when previous element is hidden

Is there any wrapper that can make it’s children behave like floated element or flex children, push forward/up when previous element is hidden by page code? Currently except for repeaters everything seems to be absolutely positioned. I tried strip/column but it’s not working.

Hi :raised_hand_with_fingers_splayed:

Try the collapse() function instead of hide() , when you collapse an element you remove it from the page, and all other elements will be shifted upward ( if the distance is 70px or less ), but when you hide elements, the elements remain on the page occupying their space as if they’re not hidden.

Hope you find this useful.
Ahmad

Thanks!

You’re welcome :wink: