Hi there
I am wanting a certain category of posts to display on a page – I have created a blog posts area and wanting it to display in Grid format.
In the Enfold theme settings – Blog Layout I have chosen the blog styling as “Elegant” and have unchecked all of the Blog meta elements. However the Category and the date is still showing on the blog layout page – however its not showing on the single post page.
How can I remove it from the grouped page?
Hey xfacta,
Please try the following in Quick CSS under Enfold–>General Styling:
.page-id-2125 .blog-categories, .page-id-2125 .slide-meta {
display:none !important;
}
Best regards,
Rikard
Perfect that worked thank you :-) Why doesn’t the setting in Enfold general blog carry over for that listing though?
Also how do I centre single blog post images?
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.single .big-preview.single-big img {
margin: auto;
}
Best regards,
Yigit
Excellent – thank you :-)