Remove date from posts

  • Unknown's avatar

    Here’s the code I’ve used so far per forum suggestions:

    time.entry-date {
    	display: none;
    }
    
    .date-meta {
    	display: none;
    }
    
    .posttitle small {
    	display: none;
    }
    
    small {
    	display: none;
    }
    
    .post-title .post-date,
    .post-extras {
    	display: none;
    }
    
    .post-title .post-date {
    	display: none;
    }

    None of it has worked.

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

  • Unknown's avatar

    CSS is theme specific, and for the theme you are using, hiding the date on posts is done with this CSS:

    .entry-date a {
    display: none;
    }
  • The topic ‘Remove date from posts’ is closed to new replies.