Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Blank space between top of footer and end of page content WordPress

http://93a.fde.myftpupload.com/

Image attached, need to remove blank space I'm stumped

Answers (2)

2016-02-05

Jayaram Y answers:

Please add the below to custom css

footer.entry-meta {
display: none;
}


robkaufman comments:

That helped but not 100%, any reason why?


Jayaram Y comments:

there is a empty footer tag coming up. And the footer tag as a class called "entry-meta". That class has a margin-top of 100px. that is why you are seeing space.. We can remove margin-top but i see you are not using that footer section on any of the page.. so thought of hiding it.

2016-02-05

Navjot Singh answers:

Try

article {
margin-bottom: 0px;
}