Currently, I have implemented scrollreveal.min.js on my WordPress website.
Although Scroll reveal is functioning properly, I encountered an issue when trying to hide the vertical scroll bar that appears during animation for a specific section using
overflow-y:hidden;
While this did successfully hide the scroll bar for the element, it unfortunately caused the animation on scroll to stop working for each item.
Additionally, I have a question about hiding the overflow vertically - I noticed that in order for overflow-y:hidden; to take effect, I had to comment out overflow:auto; Is there a way for these two to work together seamlessly?