February 20, 2025

Styling The Blogger Post Summary

How to style the Blogger post summary.

Post summary is the first part of your post that just before the jump break a.k.a "read more" tag. If the jump break is not present, Blogger will take a certain length of character for the post summary, which in that case, this trick won't work.

The following CSS hides the first paragraph of the post:

.post-body > p:nth-of-type(1) {
  display: none;
}


Open comments page