this post was submitted on 13 Jun 2025
24 points (100.0% liked)

askchapo

23056 readers
38 users here now

Ask Hexbear is the place to ask and answer ~~thought-provoking~~ questions.

Rules:

  1. Posts must ask a question.

  2. If the question asked is serious, answer seriously.

  3. Questions where you want to learn more about socialism are allowed, but questions in bad faith are not.

  4. Try !feedback@hexbear.net if you're having questions about regarding moderation, site policy, the site itself, development, volunteering or the mod team.

founded 5 years ago
MODERATORS
 

The site is the nytimes.com and I'm a desktop.

Test page - https://www.nytimes.com/live/2025/06/12/world/israel-iran-us-nuclear

There's a delay (~3 seconds or so?) before they get annoying.

I poked around after using the inspector and I made some Ublock Origin filters...

[Edit - Today, I removed the code. I learned the paywall is far from soft. On article pages - my code fubar'ed the layout. Plus only the top ~1/3rd of articles appear the rest remains hidden.]

---

I have Bypass Paywalls Clean v4.1.4.0 but it's disabled for the the Times. If it's enabled the site often entirely blocks pages so I need to use Ublock - if I can.

you are viewing a single comment's thread
view the rest of the comments
[–] edge@hexbear.net 4 points 3 weeks ago* (last edited 3 weeks ago) (4 children)
nytimes.com##STYLE[data-lights="css"]

might work. If not, look through the css and find what might be doing it (if you don’t know how, paste it here and I might be able to find it), then use Stylus to override it.

A brute force method:

* {
    overflow-y: auto !important;
}

in Stylus might fix it, unless they’re doing something more complicated. But it might also add scrollbars in weird places.

[–] InevitableSwing@hexbear.net 4 points 3 weeks ago (1 children)

A brute force method:

Ah! Now I just have to try to figure out how to squeeze that into Ublock. It can use CSS but the syntax gives me a headache. And you have to reload the page each time—

Maybe I'll just install Stylus.

[–] edge@hexbear.net 2 points 3 weeks ago

If you get extra scroll bars in weird places, there's a decent chance this would work instead:

body {
    overflow-y: auto;
}
load more comments (2 replies)