How to hide only the author in the blog layout
-
I created a new blog layout and want to display the category but not the author. However, the meta information includes both the author and the category, so I can’t just turn it off. How can I hide only the author?
Attachments:
You must be
logged in to view attached files.
And I want to change the background color of the text here, but I don’t see any option to change the background color. Could you please tell me how to change the background color?
Attachments:
You must be
logged in to view attached files.
Hi qingpeisu,
Thanks for reaching to us.
Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:
/* Background Color */
.blog-design-meta-image.blog-style-bg div.wd-post-inner {
background-color: #fff;
}
/* Remove author */
div.wd-post-author {
display: none;
}
Regards,
Hung PD