Removing Author and Post Date on Argent

  • Unknown's avatar

    I am looking to remove the author and post dates from my posts. Is this possible? If, so how?

    Thanks!

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

  • Unknown's avatar

    Hi there, this will take the post meta data on the left off of single post pages.

    .single .entry-meta {
        display: none;
    }
    .single .entry-content {
        width: 100%;
    }

    If you wish to remove the meta data from all locations (home, archive, category and tag pages) then use the following instead of the above.

    .entry-meta {
        display: none;
    }
    .single .entry-content {
        width: 100%;
    }
  • The topic ‘Removing Author and Post Date on Argent’ is closed to new replies.