Skip to content

Latest commit

 

History

History
36 lines (33 loc) · 905 Bytes

File metadata and controls

36 lines (33 loc) · 905 Bytes
aliases category classification date date_modified draft id image links local_archive_links pinned print series tags title type
override-disabled-scrolling-on-cookie-pop-up-boxes
css
public
2024-06-05 04:00:34 -0700
2024-06-05 04:00:34 -0700
false
20240605110034
false
false
cookie
css
modal
override
pop-up
Override Disabled Scrolling on Cookie Pop-up Boxes
tech-note

I save lots of web-pages using SingleFile so I always have a copy, but some pages retain a pop-up cookie or other kind of pop-up. You can remove these easily enough from the saved HTML, but sometimes you still can't scroll.

I insert the below CSS snippet into the saved HTML (anywhere within the <head></head> tags) and this usually overrides the stupid lack of scrolling.

<style>
	body {
	    overflow: auto !important;
	}
</style>