Tagged: Blog, posts, preview image
If I want to create a page that displays my posts with no preview images, is there a way? Blog Posts and Post Slider don’t seem to offer a way to NOT have the preview image. What’s the best way to do it? Thanks.
Hi!
You can hide them with CSS, create the page with the blog element of your preference then post a link here so we can provide you with the proper code.
Cheers!
Josue
Thank you! Here’s my page:
It’s under construction. I’ve included both a Blog Posts and a Post Slider because I haven’t decided. If you can provide the CSS for those two, I can extrapolate from there as I make changes.
Hey!
This will do it:
/* Blog Posts */
.post div.blog-meta a {
display: none;
}
/* Post Slider */
.post-entry .slide-image {
display: none;
}
Regards,
Josue
Thank you. These worked beautifully, and from this example I’ve found more selectors I needed using Chrome’s developer window.
That’s great, glad i could help :)