Limit Entry Height in WordPress
Without limiting the height of blog entry in blog list, the blog list page displays whole blog document.
To limit the height, add following code in Appearance -> Customize -> Additional CSS
.wpbstarter-blog-list .entry-content {
height: 200px;
overflow: auto;
}