Hiding blog post date and details

  • Unknown's avatar

    Could you let me know what css is headed to hide the right-hand section of each blog post? I.e. the area which has the square blog icon, posted date, category and comments? Also, does anyone know if there is a way that the posts can then be shifted over to the right more? Thank you!!

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

  • Unknown's avatar

    Sorry that should have said:

    Could you let me know what css is needed to hide the right-hand section of each blog post? I.e. the area which has the dark, square blog icon, posted date, category and comments? Also, does anyone know if there is a way that the posts can then be shifted over to the right more? Thank you!!

  • Unknown's avatar

    Hi there,

    You can use the code below to hide the section on the left:

    .post-details {
        display: none;
    }

    To move the posts to the right, you can add this code:

    .hentry.post .entry-content {
        float: right;
    }

    Let me know this doesn’t work!

  • Unknown's avatar

    Thank you, this works brilliantly :)

  • The topic ‘Hiding blog post date and details’ is closed to new replies.