If CNBC's adblocker-blocker popup really annoys you, do this. Open up browser devtools. Find the top most div of the adblocker-blocker and delete it.
The adblocker-blocker hijacks scroll events by blocking scrolling. Go to the top most content div and add this to element style
``` overflow: auto; height: 100vh; ```
This will fix scrolling and allow you to read content, without having to turn off the adblocker. You can do this with many other sites.
If CNBC's adblocker-blocker popup really annoys you, do this. Open up browser devtools. Find the top most div of the adblocker-blocker and delete it.
The adblocker-blocker hijacks scroll events by blocking scrolling. Go to the top most content div and add this to element style
``` overflow: auto; height: 100vh; ```
This will fix scrolling and allow you to read content, without having to turn off the adblocker. You can do this with many other sites.