Removing the date and author from posts

  • Unknown's avatar

    hi, is it possible to remove the date and author from my entries? How do I do that? Thanks

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi,

    The following CSS removes the date, as well as author and category info (can’t really hide author without hiding the category next to it, unfortunately):

    .hentry .post-date {
    	display: none;
    }
    
    .hentry .post-info {
    	font-size: 0;
    }

    The above hides the comment link to the right as well. If you want to display those, add this:

    .hentry .post-info .post-com-count {
    	font-size: 12px;
    }
  • The topic ‘Removing the date and author from posts’ is closed to new replies.