Title: Hide Blog Summary
Last modified: July 17, 2020

---

# Hide Blog Summary

 *  Resolved [plaidside](https://wordpress.org/support/users/plaidside/)
 * (@plaidside)
 * [5 years, 12 months ago](https://wordpress.org/support/topic/hide-blog-summary/)
 * What’s the CSS code needed to hide the thumbnail blog summary throughout my site
   and to keep the heights consistent, similar to my request for the blog thumbnails
   showing on the Homepage (refer to ticket request: [https://wordpress.org/support/topic/blog-post-summary-on-homepage/](https://wordpress.org/support/topic/blog-post-summary-on-homepage/))
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fhide-blog-summary%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 13 replies - 1 through 13 (of 13 total)

 *  [hannah](https://wordpress.org/support/users/hannahritner/)
 * (@hannahritner)
 * [5 years, 12 months ago](https://wordpress.org/support/topic/hide-blog-summary/#post-13136799)
 * Hey,
    In Theme Options > Blog Options you can set the “Standard Blog Post Summary
   Default” to “Text”. Does this work for you?
 * Hannah
 *  Thread Starter [plaidside](https://wordpress.org/support/users/plaidside/)
 * (@plaidside)
 * [5 years, 12 months ago](https://wordpress.org/support/topic/hide-blog-summary/#post-13136921)
 * Hi Hannah,
 * Unfortunately, it didn’t work. Any other suggestions?
 *  [hannah](https://wordpress.org/support/users/hannahritner/)
 * (@hannahritner)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/hide-blog-summary/#post-13145198)
 * What post type are you using for your posts? Have you set the post summary to
   text for each post type in theme options? Also, be sure that you are not overriding
   this setting from your individual post edit pages.
 * Hannah
 *  Thread Starter [plaidside](https://wordpress.org/support/users/plaidside/)
 * (@plaidside)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/hide-blog-summary/#post-13146279)
 * Hi Hannah,
 * yes, under Theme Options/Blog Options, both the “Standard Blog Post Summary Default”
   and “Image Blog Post Summary Default” have been set to “Text”.
 * Within individual blog posts, the “Post Head Content” is set to “Gallery Post
   Default”, and “Post Summary” under the “Gallery Post Options” is set to “Gallery
   Post Default”.
 * “Post Summary” under “Standard Post Options” is set to “Standard Post Default”.
 * But still seeing the same issue, see link below for example:
 * [https://www.themosaicfingerprint.com/category/europe/](https://www.themosaicfingerprint.com/category/europe/)
 *  [hannah](https://wordpress.org/support/users/hannahritner/)
 * (@hannahritner)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/hide-blog-summary/#post-13160791)
 * In Theme Options > Blog Options what have you set the “Gallery Blog Post Summary
   Default” to?
 * Hannah
 *  Thread Starter [plaidside](https://wordpress.org/support/users/plaidside/)
 * (@plaidside)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/hide-blog-summary/#post-13161408)
 * Hi Hannah,
 * It’s currently set to “Landscape Slider”, which is what I want since I want the
   image to show up. But the Summary part needs to be removed.
 *  [hannah](https://wordpress.org/support/users/hannahritner/)
 * (@hannahritner)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/hide-blog-summary/#post-13166145)
 * Oh sorry, I thought you were trying to remove the thumbnail image, not the text.
   OK you can use this css:
 *     ```
       #kad-blog-grid .entry-content {
           display: none;
       }
       ```
   
 * Then you’ll want to remove this from your css:
 *     ```
       #kad-blog-grid .blog_item {
           min-height: 610px;
       }
       ```
   
 * Hope that helps!
 * Hannah
 *  Thread Starter [plaidside](https://wordpress.org/support/users/plaidside/)
 * (@plaidside)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/hide-blog-summary/#post-13166838)
 * Hi Hannah,
 * Thanks, this worked! I only added the code you provided in the first part, but
   couldn’t find this:
 * #kad-blog-grid .blog_item {
    min-height: 610px; }
 * Is there a way to remove the excess padding between the posts on the mobile view,
   and desktop view? Currently, it’s showing a huge white space between blog posts
   on my android / Chrome.
 * Last time, Kevin provided me with this code (see below) to add to the blogs on
   my Homepage, which worked well. Do you have something similar that I can add 
   to the rest of my blog posts so the mobile view and desktop view eliminates the
   excess padding between each row of blog posts?
 * [@media](https://wordpress.org/support/users/media/) (max-width: 400px) {
    .home_blog#
   kad-blog-grid .blog_item { min-height: 0px; } } [@media](https://wordpress.org/support/users/media/)(
   max-width: 991px) { .home_blog #kad-blog-grid .blog_item { min-height: 0px; }}
   [@media](https://wordpress.org/support/users/media/) (min-width: 992px) { .home_blog#
   kad-blog-grid .blog_item { min-height: 350px; } }
 *  [hannah](https://wordpress.org/support/users/hannahritner/)
 * (@hannahritner)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/hide-blog-summary/#post-13167757)
 * You can overide the min height css with this:
 *     ```
       #kad-blog-grid .blog_item {
           min-height: auto;
       }
       ```
   
 * Have a nice weekend!
 * Best,
    Hannah
 *  Thread Starter [plaidside](https://wordpress.org/support/users/plaidside/)
 * (@plaidside)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/hide-blog-summary/#post-13167776)
 * Hi Hannah,
 * There’s still a lot of excess padding in between each blog post in both the mobile
   and desktop view. Have a look here a this page: [https://www.themosaicfingerprint.com/category/europe/](https://www.themosaicfingerprint.com/category/europe/)
 * How can I eliminate this extra space?
 *  [hannah](https://wordpress.org/support/users/hannahritner/)
 * (@hannahritner)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/hide-blog-summary/#post-13170515)
 * I’m not seeing the above css in your code. Where are you adding it?
 * Hannah
 *  Thread Starter [plaidside](https://wordpress.org/support/users/plaidside/)
 * (@plaidside)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/hide-blog-summary/#post-13170536)
 * Just tried again. It works now, thanks Hannah!
 *  [hannah](https://wordpress.org/support/users/hannahritner/)
 * (@hannahritner)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/hide-blog-summary/#post-13175959)
 * Oh good! Happy to help!
 * Hannah

Viewing 13 replies - 1 through 13 (of 13 total)

The topic ‘Hide Blog Summary’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/pinnacle/1.8.10/screenshot.png)
 * Pinnacle
 * [Support Threads](https://wordpress.org/support/theme/pinnacle/)
 * [Active Topics](https://wordpress.org/support/theme/pinnacle/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/pinnacle/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/pinnacle/reviews/)

 * 13 replies
 * 2 participants
 * Last reply from: [hannah](https://wordpress.org/support/users/hannahritner/)
 * Last activity: [5 years, 11 months ago](https://wordpress.org/support/topic/hide-blog-summary/#post-13175959)
 * Status: resolved