Hi Guys, I’m experiencing a recurring problem with my website, When I scroll on the mobile version it gets stuck a few seconds before scrolling down. I’ve tried using this code, which solved the scrolling issue:
@media (max-width: 769px){
html{
overflow-x: hidden;
}
But it appears at the bottom of the footer. Then I tried inserting the code in and it made it disappear but the scrolling problem came back:
<style>
@media (max-width: 769px){
html{
overflow-x: hidden;
}
</style>
Anyone has any ideas on how to solve this? I’ll appreciated so much!
