This topic has 6 replies, 3 voices, and was last updated 8 years ago ago by Robert Hall
Hi.
I would like to ask how can I hide two things, in this case, under posts.
Here you have a picture showing my needs: https://i.imgsafe.org/5ce21e430c.png
– I would like to hide the cathegory name up in the post (for any post, always hiden)
– I would like to hide the “comments are closed” for always as well (never comments and neither been shown as closed.
Thank you
Hello,
You can add this code in Custom CSS:
.blog-post h6 {
display: none;
}
.content > p {
display: none;
}
Regards,
Rose Tyler.
Thank you.
This code works to hide the cathegory name.
That’s perfect.
Thank you
but it does not work for “comments are closed”.
Any other ideas?
Thank you
Hello,
Please try to use the following code in Global Custom CSS.
.single article + p{
display: none;
}
Regards,
Robert Hall
great, not it does.
Thank you
You’re welcome!
Regards,
Robert Hall
You must be logged in to reply to this topic.Log in/Sign up