To hide the whole footer in Divi, simply add this text to your custom CSS:

#main-footer {
display: none;
}


If you wish to just hide the footer on one page, you will need to add this code, changing the page ID number:

.page-id-38 #main-footer {
display: none;
}