This comes default in Safari now, even though I know most folks don’t use it.
Comment on **SHOW ME WHAT YOU GOT**
noodles@sh.itjust.works 6 days ago
Use element zapper tool from ublock origin
TheColonel@reddthat.com 5 days ago
FenrirIII@lemmy.world 4 days ago
I still have no idea how that works. I should probably read the instructions
some_random_nick@lemmy.world 6 days ago
Don’t forget to also set
overflow
fromhidden
toscroll
.Jessica@discuss.tchncs.de 5 days ago
I’m gonna need you to elaborate on this because it sounds super helpful, but I don’t understand
brachypelmasmithi@lemm.ee 5 days ago
the
overflow
property in HTML controls what happens in a given element when its contents extend past the element’s boundaries, in other words when the contents overflow.Overflow has 4 possible values (AFAIK):
visible
,scroll
,auto
, andhidden
, where:visible
does not clip the content and lets it extend past the parent element,scroll
clips the content and adds a scrollbar so that the user can see the rest of the content,auto
adds a scrollbar only when necessary,and
hidden
clips the content that extends past the parent and doesn’t add a scrollbar.Some paywalled/loginwalled sites load all of the article content regardless of whether the wall is up or not, so when a paywall pops up you can just go into the Inspect tool (usually
CTRL+SHIFT+I
) and delete the element containing the paywall, and/or, as some_random_nick said, change the article container’soverflow
property fromhidden
toscroll
, letting you see all of the content