How to Customise Blog Layouts

Thanks for the great theme.

I want to display a simple excerpt for posts. I have selected “display excerpt for each post” in Appearance and that works fine.

However under the excerpt is is showing the post Category and Tags and number of comments and Edit button.

Is there a way to hide all that so it only shows these items when “continue reading” is clicked?

I have created a Menu item called Blog which shows Categories = Blog. This is what I am using to display this.

Is there another way to get the desired results?

Thanks
Kerry

Hi Kerry,

I hope you are well today and thank you for your question.

You can try hiding them by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Unite Options -> Other -> Custom CSS

body.blog article footer.entry-meta,
body.archive article footer.entry-meta {
    display: none;
}

Best Regards,
Movin