-
Type:
Suggestion
-
Resolution: Fixed
-
None
-
Component/s: Documentation - All
When using custom HTML for footer under "Administration->Look and Feel->Custom HTML-> At End of the BODY", which adds a large block of code, the rest of the body is pushed upwards and out of the screen.
Making the #footer relative in default-style.css helps in resolving the problem:
#footer {
bottom:0;
position:relative;
width:100%;
}