How to remove or hide time stamp on post
-
I am using the Chaoticsoul theme and need to know how to have the time stamp on post not shown (e.g. •February 2, 2011 • Comments Off )
The blog I need help with is: (visible only to logged in users)
-
I see no way to hide the date or the comment off link after the post title because they are not controlled by the CSS. In other words, there are is not ID or class assigned to them. They are defined, placed and styled completely in the theme PHP script files.
-
Actually there is a workaround:
.post, .post span {visibility:hidden;} .post * {visibility:visible;}And you can use the following if you want to remove all the metadata from the single post view:
.post .authormeta {display:none;}
- The topic ‘How to remove or hide time stamp on post’ is closed to new replies.