Good afternoon
See attached
I want to remove the entire footer block and the white space below my featured image.
End result will be featured image full screen. My image is set for full screen, but the white space and footer is preventing the full screen look
My copyright info on footer is controlled by a snippet
add_action(‘after_setup_theme’, ‘_my_sd_footer_changes’,15);
function _my_sd_footer_changes(){
remove_action( ‘dt_footer_copyright’, ‘dt_footer_copyright_default’, 10 );
remove_action( ‘dt_footer_copyright’, ‘sd_footer_copyright_default’, 10 );
add_action( ‘dt_footer_copyright’, ‘custom_dt_footer_copyright_text’, 10 );
}
function custom_dt_footer_copyright_text(){
echo ‘© 2019 Family Basics,LLC, Care-Rater.com, All Rights Reserved.’;
}
I want to completely remove footer and white space above it.
Have read many articles concerning this but to no avail.
Thanks