Need help hiding post info
-
How do I modify the CSS so these things don’t show on a post:
– date published
– category
– tagThank you in advance.
The blog I need help with is: (visible only to logged in users)
-
In your custom CSS editor, add the following to hide the date published:
.single-metainfo { display: none; }To hide the category and tags:
.post-meta { display: none; }If you want to also hide the date published on the home page (which appears when you hover over the posts on the page) include the following:
.date-meta { display: none; }
- The topic ‘Need help hiding post info’ is closed to new replies.