Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #870247

    Shannon_WeSupply
    Participant

    Hello!

    Can you please help me? I’d like to use CSS to make my blog post metadata larger.

    I’d also like to remove the author and date of post, but keep the category and number of comments.

    Thank you!
    Shannon

    #870248

    Shannon_WeSupply
    Participant
    This reply has been marked as private.
    #870634

    Rupok
    Member

    Hi Shannon,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer.

    
    /* Increase the font size of meta info */
    
    .p-meta > span {
      font-size: 13px;
    }
    
    /* hide author */
    
    .p-meta > span:first-child {
      font-size: 0;
    }
    
    .p-meta > span:first-child a {
      font-size: 13px;
    }
    
    /* hide date */
    
    .p-meta .entry-date {
      display: none;
    }
    

    Hope this helps.

    Cheers!

    #871489

    Shannon_WeSupply
    Participant

    This worked perfectly! Thank you VERY much! 🙂 I was expecting to have to manipulate the php files!

    #872245

    Prasant Rai
    Moderator

    You are most welcome. 🙂