Removing author, category tag, and comment
-
What CSS code can I use to remove ‘author’, ‘leave a comment’, and ‘filed under’ from the archive page and from each post for the theme The Morning After?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
This will hide everything but the date on the posts. Add it to the end of your CSS in the order I have it here.
.post-info { visibility: hidden; } .post-info .date { visibility: visible; } -
For categories, you used an underscore in the selector (between post and meta) and it should be a dash, like this:
.post-meta { display: none; } -
-
- The topic ‘Removing author, category tag, and comment’ is closed to new replies.