Remove “Posted on MM/DD/YYYY” and “in Uncategorized” from blog posts

  • Unknown's avatar

    I’m using the Adventure theme and want to remove “Posted on MM/DD/YYYY” and “in Uncategorized”, but want to leave the name of the author for each post.

    I know CSS editing is theme specific. Can someone help me with the CSS to do this for the Adventure theme? Thanks.

    The blog posts are located here, https://discassessmentcoach.net/blog/

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

  • Unknown's avatar

    Also, I would like (in the Adventure theme) to reduce/shrink the height of the footer. Can someone help with the CSS for that?

    Thank you.

  • I’m using the Adventure theme and want to remove “Posted on MM/DD/YYYY” and “in Uncategorized”, but want to leave the name of the author for each post.

    You can use this CSS for that:

    .post-author {
    	font-size:0;
    }
    
    .posted-by {
    	font-size:12px;
    }

    Also, I would like (in the Adventure theme) to reduce/shrink the height of the footer.

    I suggest you reduce the padding for that a little bit, for example:

    .footer-information {
    	padding:10px;
    }
  • Unknown's avatar

    Thank you, senff. I was driving myself crazy trying to get it to work and you solved it just like that! :)

  • The topic ‘Remove “Posted on MM/DD/YYYY” and “in Uncategorized” from blog posts’ is closed to new replies.