Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #21920
    Dottie
    Member

    how do i hide the excerpts from posts from showing on the front homepage?

    #22013
    Sakin
    Keymaster

    @Dottie: You can just hide the excerpt in your front homepage by adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .home #primary .entry-summary { display: none; }

    Or you can build child theme and then copy content.php file in your child theme and edit it.

    #22022
    Dottie
    Member

    that didn’t work…. i copied and pasted that into the custom css box, and nothing happened.

    my url site is http://www.therequiredreplay.com

    thank you again for your help

    #22025
    Sakin
    Keymaster

    @Dottie: It’s because of the custom css issues. Replace the following CSS in Custom CSS

    .entry-title {
         font-size: 25px;
         line-height: 45px;
    {
    .home #primary .entry-summary { display: none; }

    to

    .entry-title {
         font-size: 25px;
         line-height: 45px;
    }
    .home #primary .entry-summary { display: none; }
    #22031
    Dottie
    Member

    ok thank you!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘How To Hide Excerpts From Showing On Front Page’ is closed to new replies.