Bindery theme- removing dates from blog posts

  • Unknown's avatar

    Hello,

    I would like the CSS to remove the date on the blog page and make the description text smaller. I would also like to remove the left hand “posted by” on blog posts.

    Thanks!

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

  • Unknown's avatar

    To remove the date on posts in Bindery, go to Appearance > Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS.

    .entry-meta-item time {
        display: none;
    }
    .entry-meta-item + .entry-meta-item::before {
        content: "";
    }
  • Unknown's avatar

    This is SO helpful. Many thanks! Do you know how I can get rid of the “posted by” picture and profile name that appears on the left side of every post?

  • Unknown's avatar

    We can do that. The following removes the author info from the left size of the single posts and then centers the content.

    .single .entry-content .sidenote, .entry-author {
        display: none;
    }
    .single .layout-span {
        margin-left: auto;
        margin-right: auto;
    }
  • The topic ‘Bindery theme- removing dates from blog posts’ is closed to new replies.