In a browser like Chrome etc.:
- Inspect the code (for e.g. in Chrome press
ctrl + shift + c); - Set
overflow: visibleonbodyand/orhtmlelement (for e.g.,<body style="overflow: visible">) - Find/Remove any JavaScripts that may routinely be checking for removal of the
overflowproperty:
- To find such JavaScript code, you could for example, go through the code, or click on different JavaScript code in the code debugger console and hit
backspaceon your keyboard to remove it. - If you’re having trouble finding it, you can simply try removing a couple of JavaScripts (you can of course simply press
ctrl + zto undo whatever code you delete, or hit refresh to start over).
Good luck!