Remove blank space

I am wondering how to remove the blank space at the bottom of the home page? I’d like to have it end at the bottom of the picture.

See attached photo and view the website at sync.sunlightyouth.org.

Is there CSS for this?

Thanks,
Nicholas

Hello Nicholas,

This should be the CSS code for this:

#footer{
display: none;
}

if you want to hide the footer only for the homepage add the class to it:

.home #footer{
display: none;
}

Thank you for creating a new thread, providing website link and visual aidance, it greatly speed things up.