Lovecraft – Remove “ON “ from meta date
-
Would like to remove the “ON “ that’s before the date in the meta of each post. Tried various CSS approaches but can’t get it to disappear without making the whole date meta go away.
Is there a way to do this?
The blog I need help with is: (visible only to logged in users)
-
Hey there,
The CSS you will need is:
/* Remove "on" from post meta */ .entry-meta { font-size: 0; } span.posted-on a, span.comments-link { font-size: .75rem; } .logged-in a.post-edit-link { font-size: .75rem; } .logged-in a.post-edit-link:before { content: "/"; margin: 0 1em; color: #ccc; } -
-
Hey there,
You’re missing the “/” at the very beginning. Add that and the code should work.
Thanks!
-
- The topic ‘Lovecraft – Remove “ON “ from meta date’ is closed to new replies.