Search code examples
phphtmlcssfooter

white space under my footer need to remove it


Hello please I need help with removing whitespace from all my website pages https://www.seowebanalyst.com

scroll down the footer you will see it. We just redesigned the site and do not know how this come to be as it was spotted by a visitor. Have tried all tricks previously stated on this site but none worked so am sharing a bit of the css code used for the css code that handles the page

}
.footer {
	background:#333;
	padding:15px 0 10px
        overflow:hidden
}
.footer p {
	margin:0;
	color:#fff;
	font-size:15px;
	text-align:center
}
.footer p span, .footer p a {
	color:#fff;


Solution

  • The site footer error as been corrected with the following line into css

    .footer {position: absolute;width: 100%;padding: 10px;}

    .footer {margin: 0 auto -155px;}

    didnot remove the former css footer line, just added this lines and it fixed all no need to worry about using in code and not getting results with most pages. the neww css line for footer resolved all headaches like a charm.