Hey,
In Theme Options > Blog Options you can set the “Standard Blog Post Summary Default” to “Text”. Does this work for you?
Hannah
Hi Hannah,
Unfortunately, it didn’t work. Any other suggestions?
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
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/
In Theme Options > Blog Options what have you set the “Gallery Blog Post Summary Default” to?
Hannah
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.
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
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 (max-width: 400px) {
.home_blog #kad-blog-grid .blog_item {
min-height: 0px;
}
}
@media (max-width: 991px) {
.home_blog #kad-blog-grid .blog_item {
min-height: 0px;
}
}
@media (min-width: 992px) {
.home_blog #kad-blog-grid .blog_item {
min-height: 350px;
}
}
You can overide the min height css with this:
#kad-blog-grid .blog_item {
min-height: auto;
}
Have a nice weekend!
Best,
Hannah
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/
How can I eliminate this extra space?
I’m not seeing the above css in your code. Where are you adding it?
Hannah
Just tried again. It works now, thanks Hannah!