Hello,
I would like to hide post date in blog section.
Also I would like to know, how can I make blog post header image smaller?
Hey pimroll,
Thank you for the inquiry.
You can toggle the display of blog post info including the post date in the Enfold > Blog Layout > Blog Meta Elements section. Please look for the Blog Post Date option and disable it.
And to decrease the size of the featured image, please add this css code.
#top .fullsize .template-blog .big-preview {
padding: 0 0 10px;
width: 60%;
margin: 0 auto;
}
Best regards,
Ismael
Hello,
Thanks I managed to make blog post image smaller but the date is already disabled in the blog layout section> https://ibb.co/MBZNvH6
Hi,
Thank you for the update.
but the date is already disabled in the blog layout section
Please try to add this css code instead.
#top time.slide-meta-time.updated {
display: none;
}
This should hide the date in the blog overview.
Best regards,
Ismael
Hello,
Thanks it worked.
One more thing, how can I hide the comment section in the bottom?
Hi,
To hide the comment section on the single post try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top.single-post .comment-entry {
display: none;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Thanks, it works!