Layout Jerking - Help Please!

I need help with this layout juttering, please!

When I animate one element out, then another element in, a scrollbar appears at the bottom which throws some of the layout out (the buttons jerk around).

Problem shown here:

Any smart people out there know how to solve this?

Hey @james34, how are you?

I have had a what looks like similar problem and it was due to the elements not collapsing properly or at the right time.

Are you using collapsing when hidden?

Yes, I am - If I don’t collapse when hidden, then animating when element into the same position won’t work, as it can’t replace the element that’s been animated out unless it collapses.

There may be better solutions available, but I had a similar issue and resolved it by putting each group within an align to parent group and didn’t collapse each element when hidden.

Thanks, Ben - I tried this but it still doesn’t work. The appearance of the scrollbar is pushing up the buttons, so it’s not the collapsing of the elements.

I wish I knew how to stop the scrollbar!

This should hide your scroll bar

<style> ::-webkit-scrollbar { width: 0px; height: 0px;} </style>

you beautiful person! :slight_smile:

This topic was automatically closed after 70 days. New replies are no longer allowed.