How can I hide the bottom footer?

How can I hide this entire bottom section?

hey there

Hope you are having a good day and thank you for your question :slight_smile:
Please add this CSS in appearance - customize - additional CSS

#footer .bottom-footer {
display: none;
}

Thanks!
Colorlib Support Team

Thank you for your reply…I tried that and I still see the bottom footer?

Hello there,

I hope you are doing well today.

Pleasae try using this CSS code to remove the entire footer:


/*Footer Removal*/
footer#footer {
    display: none;
}

Best Regards,
Support

Thanks for the quick reply. That doesn’t seem to work either.

Hello there,

Please remove that last CSS and use this instead:


#footer {
    display: none;
}

Best Regards,
Support