Hiding category titles, post date, author
-
How do I hide category titles, post date, author etc. in posts?
The blog I need help with is: (visible only to logged in users)
-
Hi there,
Try using this CSS:.post-author {
display: none;
}.post-meta {
display: none;
} -
Hi,
I got the following CSS for hiding author and date, and it worked;
.byline{display:none;}.icon-time, .posted-on {display:none;}
But I need to hide categories and tags at the bottom of the post, and the title (Category: Pastor Rick’ Blog) for this specific page: https://ecwinnipegwebsite.wordpress.com/category/pastor-ricks-blog/
-
Hi,
Try with:
.post-meta {
display: none;
}
It should hide the categories and tags in the page you mention. -
Yes, it did! Thank you!
I just need to hide the title “Category: Pastor Rick’s blog” on the top of the page now:
https://ecwinnipegwebsite.wordpress.com/category/pastor-ricks-blog/ -
-
It worked, but it hid the titles of all my posts and pages. is there a way to do it specifically for just one page?
https://ecwinnipegwebsite.wordpress.com/category/pastor-ricks-blog/ -
It worked, but it hid the titles of all my posts and pages. is there a way to do it specifically for just one page?
https://ecwinnipegwebsite.wordpress.com/category/pastor-ricks-blog/ -
Sorry, my bad. Please delete the code above and place this one instead:
.wf-active h1 {
display: none;
} -
-
-
Hi,
I’m trying to remove the author from my venture theme. Does anyone know how I can do this? I’ve tried the CSS codes suggested above but haven’t had any luck.
Any help would be appreciated!!
-
Hi @vanessachircop88, since you are using a different theme, and since CSS is generally theme specific, can I ask you to create a new thread in the CSS Forum? Many thanks in advance.
- The topic ‘Hiding category titles, post date, author’ is closed to new replies.