removing date and time and comment box
-
I have a new site that I am making and I would like to remove the date and time, as well as the comments box. I understand that I need to upgrade to custom css to do this, and then I add some code in the box. But what is the code that I add???
I would like to make sure this works before I upgrade, but for the life of me, I can’t even find the code that I would need. It seems that this would be a simple (and commonly used) code.
Can you help me?
The blog I need help with is: (visible only to logged in users)
-
All CSS editing is theme specific and this theme has been CSS edited many times. Searching provides the results you can use in the CSS preview mode, which only you will be able to see the CSS editing of, until you purchase the annually rebewable custom design upgrade.
https://en.forums.wordpress.com/topic/remove-datetimeauthor?replies=22#post-479593
https://en.forums.wordpress.com/topic/twenty-ten-remove-comments-off-tag?replies=4#post-504289 -
I checked the site linked to your username http://holygroundpbc.wordpress.com/ and I found that it is using the Twenty Ten theme.
To hide the date and time on posts in the Twenty Ten theme, you can use this CSS:
.entry-meta { display: none; }Another alternative would be to use posts instead of pages. Pages don’t use dates: http://en.support.wordpress.com/post-vs-page/
To disable comments, start with this: http://en.support.wordpress.com/enable-disable-comments/
To hide “Comments Off” text in Twenty Ten, use this
.comments-link { display:none; }
- The topic ‘removing date and time and comment box’ is closed to new replies.