Viewing 5 replies - 1 through 5 (of 5 total)
  • This in your child theme style.css is hiding it:

    .entry-meta {
        display: none;
    }

    no mention of the author and no time or date is showing up anywhere on the site in relation to the posts

    you are hiding it with css in style.css of hte child theme:

    .entry-meta
    {
    display:none;
    }
    Thread Starter savedave

    (@savedave)

    Wow thanks for an amazingly quick response!

    I see that now. I put that code in as I wanted to hide the ‘category’ bit at the bottom: Posted in Uncategorized and this was the solution in a forum post.

    Is there another way to achieve that? (Should I make a new post?)

    This should hide just the category line:

    .entry-meta .cat-links {
        display: none;
    }

    Thread Starter savedave

    (@savedave)

    Perfect! Thanks so much.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Theme Twentyeleven] Author, date and time not showing on posts or main page’ is closed to new replies.