Move In Interaction

Hi Everyone,

Im working on this page - http://rbc-2.webflow.io/

You will notice when you scroll down there are a few elements that shoot in from the right as you scroll down. This is how I want my interaction to work but you will notice if you refresh and before you scroll down you’re able to scroll to the right and see those elements that are waiting to interact. I hope im making sense. Im not sure how to fix this so there’s no scrolling left to right. Please help!

Thank you in advanced.

Tom

Insert this into Site Settings > Custom Code > Header Code:

<style>
body {
  overflow-x: hidden !important;
}
</style

That was it. Thank you very much. Do you mind explaining what the code does exactly?