Dear Adam,
it seems like a CSS conflict between the plugin and the theme.
Could you please post a link to the page where you have this issue.
For example fadeoutright expand page.
Dear Adam,
The Animate.css is applied in such a way that elements going out of the screen will automatically increase the website width/height. So we cannot prevent the increase/decrease of the scrollbars. We can, however, hide them.
Now, when this increase/decrease happens vertically, we cannot hide the vertical scrollbar, as it would disable scrolling the page.
We can however, prevent the horizontal Scrollbar from appearing, by adding the following CSS code to style.css or similar file.
body{
overflow-x: hidden !important;
}
This solution would be released in our next update, coming in a few days.
Horizontal solution help. But i cant fix vertical solution. I tried.
overflow: hidden for parent section of element with animation animate.css. But element with fadeIndown start from footer, not from bottom of element. Yeh i know i cant disable scrolling. Can you help me with fix this. i am trying some solution. But i am not successful.
Dear Adam,
I did a thorough research about this, and I am afraid I am not able to find a generic solution anywhere about this issue.
About your particular case, where you wish to add a fadeInUp animation to the footer. A possible solution here would be to add overflow-y:hidden to site-info area.
So the css rule to be added here is:
.site-info{
overflow-y: hidden;
}
I am a bit helpless here as the animate.css itself cannot find a solution here. Please do let me know in case you stumble upon something.
Thank you for your new update. I will try fix vertical problem and test your new update.
Please let me know if it works *Fingers Crossed*
😀