.entry-meta { display: none; }

  • Unknown's avatar

    Hello

    I hace custom css for the entry meta in order not to see the author and date. I want to change the syntax so i can see just the date of the article. please help me :)

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

  • Unknown's avatar

    Hi there,

    Remove the entry-meta code and add the CSS code snippet below. It will remove the Author name and display date on the posts.

    `/*This removes the separator (forward slash)*/
    .entry-meta ul li:before {
    display: none;
    }

    /*This removes author name*/
    .byline {
    display: none;
    }’

    Let me know if this helps :D

  • Unknown's avatar

    Hi there,

    Remove the entry-meta code and add the CSS code snippet below. It will remove the Author name and display date on the posts.

    /*This removes the separator (forward slash)*/
    .entry-meta ul li:before {
    display: none;
    }
    
    /*This removes author name*/
    .byline {
    	display: none;
    }

    Let me know if this helps :D

  • Unknown's avatar

    Worked like a charm.

    Thank you, thank you and … oh yeah … thank you :)

  • The topic ‘.entry-meta { display: none; }’ is closed to new replies.