(Squarespace) How to remove Header/Footer on Individual Blog Post

To remove Header/Footer on Individual Blog Post, you can use code like this to Custom CSS box.

body[class*="type-blog"].view-item {
    header {
        display: none !important;
    }
    footer.sections {
        display: none !important;
    }
}