Featured image in posts, date and categories
-
Hi, I have a few adjustments I would like to do to my template and wonder if you could help me out please:
1- I would like to Remove the featured image from blog posts (but not from thumbnails)… I would like for all the posts to start from the title area without the featured image on top
2- Remove dates, categories, and author from blog thumbnails and blog posts in the masonry grid… I literally just want a clean look with thumbnails and the title
3- Is there a way to have the masonry grid with all the thumbnails aligned?
Thank you for your help!
Attachments:
You must be
logged in to view attached files.
Hello,
Thank you very much for choosing our theme and for contacting our support.
This is possible to do with custom CSS:
/*delete the featured image*/
.blog-post-loop.post-single-page .entry-thumbnail {
display:none;
}
/*delete the date on post and on grid*/
body .blog-post-loop .post-date {
display: none;
}
/*title*/
.blog-post-loop .entry-title {
margin-top: 40px;
}
/*author*/
.meta-author{
display: none!important;
}
Add this code to the Theme Settings > Custom CSS > Global
Best Regards
Thanks for your help, the code you provided works partially. For some reason it doesn’t seem to be working correctly with the masonry grid option (it does sort of work with the default option); while using masonry option “categories” and “date” are still showing in thumbnails and sigle posts. What can I do to fix this?
Attachments:
You must be
logged in to view attached files.
Hello,
Please provide your site admin access.
Best Regards
Hello,
Please replace the code with this one:
/*delete the featured image*/
.blog-post-loop.post-single-page .entry-thumbnail {
display:none;
}
/*delete the date on post and on grid*/
.post-date {
display: none!important;
}
.meta-post-categories {
display: none!important;
}
/*title*/
.blog-post-loop .entry-title {
margin-top: 40px;
}
/*author*/
.meta-author{
display: none!important;
}
Best Regards
THANKS! that worked out 🙂
You are welcome! If you have any questions please feel free to contact us.
Best Regards
The topic ‘Featured image in posts, date and categories’ is closed to new replies.