Hide date of post

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #641
    gregoryjporter
    Participant

    Hello,
    I’m trying to hide the date of a post on the Axon them.

    In the forums, I found this custom css. It removes the date, but the post still says “Posted on by author name.”

    /* In order to remove from everywhere */
    .entry-date {
    display: none;
    }
    .entry-date+.entry-meta-sep {
    display: none;
    }

    Now, how do I remove “Posted on” ?

    Thanks in advance!

    #1642
    admin
    Participant

    Hi,

    I will recommend to use Jetpack Custom CSS module to use CSS Code Snippets.

    Please use the following Code Snippet to hide date.

    /* For Home Page */
    .home .posted-on {
    display: none;
    }

    /* For Single Posts */
    .single .posted-on {
    display: none;
    }[/CODE]

    Thanks[CODE]/* For Home Page */
    .home .posted-on {
    display: none;
    }

    /* For Single Posts */
    .single .posted-on {
    display: none;
    }[/CODE]

    Thanks

    #1643
    gregoryjporter
    Participant

    Perfect! Thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.