• Hello

    im trying to hide post excerpts on this theme.

    i tryed using:

    .entry-content{ display: none}

    but it also hides the content on the post itself.

    Any sugestions!?

    • This topic was modified 8 years, 2 months ago by daniell.
Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello, you want to remove it from the home page? Could we have the url?

    Try pasting this into your custom CSS injector (or child theme if you have created one):

    .home #primary .entry-summary { display: none; }

    Good luck ??

    Thread Starter daniell

    (@daniell)

    css injector!

    did not change anything. Trying to remove form home page and also category listing pages.

    Its localhosted website.

    Hi,

    Try this Custom CSS in any Custom CSS plugin or in your child theme’s style.css,

    .home .entry-content { display: none; }

    or

    .blog .entry-content { display: none; }

    Regards,

    Hi,

    For Category pages, you can use this CSS,

    .archive .entry-content { display: none; }

    or

    .category .entry-content { display: none; }

    Regards,

    Thread Starter daniell

    (@daniell)

    IT worked, thanks!

    Also its possible to have this behavior on front page also ? When showing last posts ?

    Hi,

    Glad it works ??

    This code will take care of the front page blog posts,

    .home .entry-content { display: none; }

    Regards,

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Hide Post Excerpt’ is closed to new replies.