Need help hiding post info

  • Unknown's avatar

    How do I modify the CSS so these things don’t show on a post:
    – date published
    – category
    – tag

    Thank you in advance.

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

  • Unknown's avatar

    In your custom CSS editor, add the following to hide the date published:

    .single-metainfo {
    display: none;
    }

    To hide the category and tags:

    .post-meta {
    display: none;
    }

    If you want to also hide the date published on the home page (which appears when you hover over the posts on the page) include the following:

    .date-meta {
    display: none;
    }
  • The topic ‘Need help hiding post info’ is closed to new replies.