Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #870488

    Robert
    Participant

    Hi,
    How can I suppress the post tags from showing up below the post in the blog search results? Please see the attached screen shot. Thanks!

    #870849

    Paul R
    Moderator

    Hi Robert,

    Thanks for writing in!

    You can add this under Custom > CSS in the Customizer.

    
    .search-results .entry-footer {
        display:none;
    }
    

    If that doesn’t help, please provide us your site url so we can take a closer look.

    Thanks

    #871657

    Robert
    Participant
    This reply has been marked as private.
    #872059

    Robert
    Participant
    This reply has been marked as private.
    #872062

    Robert
    Participant

    In addition to removing the tags under the post on the blog page, can you please also explain how I can increase the size of the text in the blog post. Thanks!

    #872387

    Paul R
    Moderator

    Hi,

    Please change css code given above to this.

    
    /* remove tags */
    .blog .entry-footer {
        display:none;
    }
    /* increase font size */
    body .entry-content {
        font-size: 18px;
    }
    

    You may change 18px to achieve your desired result.

    Hope that helps

    #874562

    Robert
    Participant

    That worked great! Thanks!

    #874992

    Rue Nel
    Moderator

    You are most welcome!