[b]"Why does my page scroll drops to bottom randomly? Anyone else facing this?"[/b] or [b]"How to fix scroll drops

14 Replies, 1503 Views

"Scroll drops to bottom randomly—anyone else dealing with this?"

Hey folks!

So my website keeps doing this weird thing where the scroll drops to bottom *for no reason*?? Like, I’ll load a page or click a link, and bam—suddenly I’m at the footer. 😑

Happens on mobile *and* desktop. No errors in console, no obvious JS messing with it. Tried disabling plugins, but nada.

Anyone else run into this? Or better yet, fixed it? Super annoying when you’re trying to read stuff and the page just yeets itself downward.

Thanks in advance! 🙏

*(Also, if it matters—using WordPress, but saw similar threads for vanilla sites too.)*
Ugh, I had this exact same issue last month! The scroll drops to bottom thing drove me nuts. Turns out it was a rogue `#` in one of my anchor links. Check if any of your links or buttons have `href="#"`—that can sometimes trigger auto-scrolling.

Also, try this tool: [ScrollSpy Debugger](https://example.com/scrollspy). It helped me track down the culprit.

WordPress can be sneaky with plugins adding junk JS. Maybe disable *all* plugins temporarily and see if it stops?
Hey! This happens to me too, but only on mobile. Super annoying when you’re trying to read and the page just jumps down.

I fixed it by adding this CSS to my theme:
```css
html { scroll-behavior: auto !important; }
```
Forces the page to stop smooth-scrolling nonsense. No idea why it works, but it did for me!

Also, check if you have any lazy-loading scripts—those can mess with scroll position.
omg YES. The scroll drops to bottom thing is the worst. Mine was caused by a stupid GDPR plugin adding a hidden div at the bottom.

Try inspecting the page and look for hidden elements near the footer. Sometimes they force a scroll for no reason.

If you’re on WordPress, maybe try switching to a default theme (like Twenty Twenty-Four) to rule out theme issues.
This might sound weird, but do you have any auto-focus scripts running? Like for forms or search bars? Sometimes those make the page scroll to the focused element, which could be at the bottom.

I used Chrome’s DevTools (Elements > Event Listeners) to find what was triggering the scroll. Took forever, but worth it.

Also, this guide helped me: [Fix Unwanted Page Scroll](https://example.com/fix-scroll).
Had the same problem! For me, it was a conflict between jQuery and a custom JS script. The scroll drops to bottom randomly because some functions were firing twice.

Try adding `event.preventDefault()` to any scroll-related scripts. Or just nuke ’em and see what happens lol.

WordPress is a mess with this stuff. Maybe try [Health Check plugin](https://wordpress.org/plugins/health-check/) to troubleshoot without breaking your live site.
Thanks for all the suggestions, everyone! I tried the CSS fix and disabled plugins, but no luck yet.

Weirdly, it only happens on pages with galleries. Maybe it’s the lazy loading like someone said? Gonna test that next.

Also, gonna check out the ScrollSpy tool—sounds promising. Appreciate the help! 🙌

(Still open to more ideas if anyone’s got ’em!)
Yo, this is a known issue with some ad networks or analytics scripts. They inject crap that messes with the DOM and causes the page to scroll down.

Try blocking third-party scripts one by one (uBlock Origin is great for this) and see if it stops.

Also, check your browser extensions—sometimes they’re the culprit. Had a friend whose Grammarly extension was doing this exact thing.



Users browsing this thread: 1 Guest(s)