(Squarespace) How to remove white space under author box in blog posts

To remove white space under author box in blog posts, like this.

You can use this code to Custom CSS.
You can also use this free blog tool so you can customize blog easier without using code.

/* white space */
.item-pagination[data-collection-type^="blog"] {
    padding-top: 0px !important;
}
.blog-item-wrapper article.entry {
    padding-bottom: 0px !important;
}
section.blog-item-comments {
    margin-top: 0px !important;
}

Result

1 Like