Difference between revisions of "Hacking The Web"

From TheBeard Science Project Wiki
Jump to: navigation, search
 
(Re-Enable Scrolling)
 
Line 2: Line 2:
 
== Re-Enable Scrolling ==
 
== Re-Enable Scrolling ==
  
Sometimes after removing the modal box and background, the page still won't scroll up or down. On most web pages, I've found that this is caused by a <code>style="overflow: hidden;"</code> on a containing element, often the <code><body></code> tag. Removing this style will allow you to scroll.
+
Sometimes after removing the modal box and background, the page still won't scroll up or down. On most web pages, I've found that this is caused by a <code>style="overflow: hidden;"</code> on a containing element, often the <code><body></code> tag. Removing this style will allow you to scroll. It may also be applied with a CSS class, so removing the class property pay also work.

Latest revision as of 01:13, 30 July 2020

Re-Enable Scrolling

Sometimes after removing the modal box and background, the page still won't scroll up or down. On most web pages, I've found that this is caused by a style="overflow: hidden;" on a containing element, often the <body> tag. Removing this style will allow you to scroll. It may also be applied with a CSS class, so removing the class property pay also work.